scratch-audio/webpack.config.js
Christopher Willis-Ford dc469d4a8e Standardize repository settings
Add `.gitattributes` for consistent line endings across platforms.
Use `node` instead of deprecated `stable` version specifier for Travis.
Set dev tool to `cheap-module-source-map`.
2017-04-11 11:33:12 -04:00

24 lines
526 B
JavaScript

var path = require('path');
module.exports = {
devtool: 'cheap-module-source-map',
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']
}
}]
}
};