parent
c57ba56546
commit
8ff200755f
5 changed files with 41 additions and 1 deletions
@ -1,3 +1,4 @@ |
||||
/node_modules/ |
||||
/build/ |
||||
/e2e/ambassador/build/ |
||||
*.zip |
||||
|
@ -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 |
||||
|
Reference in new issue