A fork of https://github.com/ueokande/vim-vixen
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.
33 lines
503 B
33 lines
503 B
7 years ago
|
var path = require('path');
|
||
|
|
||
|
const src = path.resolve(__dirname, 'src');
|
||
|
const dist = path.resolve(__dirname, 'build');
|
||
|
|
||
|
module.exports = {
|
||
|
entry: {
|
||
|
index: path.join(src, 'index.js')
|
||
|
},
|
||
|
|
||
|
output: {
|
||
|
path: dist,
|
||
|
filename: '[name].js'
|
||
|
},
|
||
|
|
||
|
module: {
|
||
|
loaders: [
|
||
|
{
|
||
|
test: /\.js$/,
|
||
|
exclude: /node_modules/,
|
||
|
loader: 'babel-loader',
|
||
|
query: {
|
||
|
presets: [ 'es2015' ]
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
|
||
|
resolve: {
|
||
|
extensions: [ '.js' ]
|
||
|
}
|
||
|
};
|