initial commit

This commit is contained in:
Eric Rosenbaum 2016-10-13 14:54:07 -04:00
commit b0cb3950fa
8 changed files with 268 additions and 0 deletions

23
webpack.config.js Normal file
View file

@ -0,0 +1,23 @@
var path = require('path');
module.exports = {
entry: {
'dist': './src/index.js'
},
output: {
path: __dirname,
library: 'AudioEngine',
libraryTarget: 'commonjs2',
filename: '[name].js'
},
module: {
loaders: [{
test: /\.js$/,
loader: 'babel-loader',
include: path.resolve(__dirname, 'src'),
query: {
presets: ['es2015']
}
}]
}
};