You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
var path = require('path');
|
|
|
|
|
|
|
|
const src = path.resolve(__dirname, 'src');
|
|
|
|
const dist = path.resolve(__dirname, 'build');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
entry: {
|
|
|
|
index: 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' ]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.css$/,
|
|
|
|
loader: 'style-loader!css-loader',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
|
|
|
|
resolve: {
|
|
|
|
extensions: [ '.js' ]
|
|
|
|
}
|
|
|
|
};
|