2017-03-25 02:14:52 -04:00
|
|
|
module.exports = {
|
|
|
|
entry: [
|
|
|
|
${1:'./app/main.js'}
|
|
|
|
],
|
|
|
|
output: {
|
|
|
|
path: __dirname + '/dist',
|
|
|
|
filename: "app.bundle.js"
|
|
|
|
},
|
|
|
|
module: {
|
2018-03-26 22:27:09 +01:00
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
use: {
|
|
|
|
loader: "babel-loader"
|
|
|
|
}
|
|
|
|
}
|
2017-03-25 02:14:52 -04:00
|
|
|
]
|
2018-03-26 22:27:09 +01:00
|
|
|
},
|
2017-03-25 02:14:52 -04:00
|
|
|
// plugins: []
|
2018-03-26 22:27:09 +01:00
|
|
|
};
|