regexper-static/webpack.config.js

37 lines
674 B
JavaScript
Raw Normal View History

var webpack = require('webpack');
module.exports = {
devtool: 'source-map',
entry: {
'js/main.js': './src/js/main.js'
},
output: {
path: __dirname + '/build',
filename: '[name]'
},
plugins: [
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
})
],
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel'
},
{
test: require.resolve('snapsvg'),
loader: 'imports-loader?this=>window,fix=>module.exports=0'
},
{
test: /\.peg$/,
loader: __dirname + '/lib/canopy-loader'
}
]
}
};