2017-08-07 02:32:07 +00:00
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
entry: {
|
|
|
|
upload: ['./frontend/src/upload.js'],
|
|
|
|
download: ['./frontend/src/download.js']
|
|
|
|
},
|
|
|
|
output: {
|
|
|
|
filename: '[name].js',
|
2017-08-10 02:22:20 +00:00
|
|
|
path: path.resolve(__dirname, 'public'),
|
|
|
|
publicPath: '/'
|
2017-08-07 02:32:07 +00:00
|
|
|
},
|
|
|
|
module: {
|
|
|
|
loaders: [
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
loaders: 'babel-loader',
|
2017-08-09 19:56:32 +00:00
|
|
|
include: [
|
|
|
|
path.resolve(__dirname, 'frontend'),
|
|
|
|
path.resolve(__dirname, 'node_modules/testpilot-ga/src')
|
|
|
|
],
|
|
|
|
query: {
|
|
|
|
babelrc: false,
|
2017-08-10 17:02:13 +00:00
|
|
|
presets: [['es2015', { modules: false }], 'stage-2']
|
2017-08-09 19:56:32 +00:00
|
|
|
}
|
2017-08-07 02:32:07 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
};
|