diff options
Diffstat (limited to 'e2e/ambassador/webpack.config.js')
-rw-r--r-- | e2e/ambassador/webpack.config.js | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/e2e/ambassador/webpack.config.js b/e2e/ambassador/webpack.config.js new file mode 100644 index 0000000..2a544bf --- /dev/null +++ b/e2e/ambassador/webpack.config.js @@ -0,0 +1,37 @@ +const path = require('path'); + +const src = path.resolve(__dirname, 'src'); +const dist = path.resolve(__dirname, 'build'); + +config = { + entry: { + content: path.join(src, 'content'), + background: path.join(src, 'background') + }, + + output: { + path: dist, + filename: '[name].js' + }, + + module: { + loaders: [ + { + test: [ /\.js$/ ], + exclude: /node_modules/, + loader: 'babel-loader', + query: { + presets: ['es2015'] + } + } + ] + }, + + resolve: { + extensions: [ '.js' ], + modules: [path.join(__dirname, 'src'), 'node_modules'] + } +}; + +module.exports = config + |