feature/file-templates: add __webpack.config.js template

This commit is contained in:
Henrik Lissner 2017-03-25 02:14:52 -04:00
parent ac5ad085dc
commit 3ce0e7d9c9
2 changed files with 20 additions and 4 deletions

View file

@ -0,0 +1,15 @@
module.exports = {
entry: [
${1:'./app/main.js'}
],
output: {
path: __dirname + '/dist',
filename: "app.bundle.js"
},
module: {
loaders: [
{ test: /\.js$/, include: __dirname + '/app', loader: 'babel-loader' }$0
]
}
// plugins: []
};