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