diff options
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..1fc43ff --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,19 @@ +const path = require('path'); + +module.exports = { + entry: './public/javascripts/main.js', + output: { + path: path.resolve(__dirname, 'public/javascripts'), + filename: 'bundle.js' + }, + module: { + rules: [ + { + test: [/\.js$/], + exclude: [/node_modules/], + loader: 'babel-loader', + options: { presets: ['es2015'] } + } + ] + } +}
\ No newline at end of file |