scratchjr/webpack.config.js
Donald d60ea5e7cb Upgrade webpack to 4.18.0
Add 'watch' and 'dev' npm scripts
2018-09-11 14:13:38 +08:00

41 lines
950 B
JavaScript

var WebpackNotifierPlugin = require('webpack-notifier');
module.exports = {
devtool: 'source-map',
entry: {
app: './src/entry/app.js'
},
output: {
path: __dirname + '/src/build/bundles',
filename: '[name].bundle.js'
},
performance: {
hints: false
},
watchOptions: {
ignored: ["node_modules", "src/build/**/*"]
},
module: {
rules: [
{
test: /\.js$/,
include: /node_modules/,
loaders: ['strip-sourcemap-loader']
},
{
loader: 'babel-loader',
exclude: /node_modules/,
test: /\.jsx?$/,
query: {
presets: ['es2015']
}
}
]
},
plugins: [
new WebpackNotifierPlugin({
title: "ScratchJr",
alwaysNotify: true
})
]
};