This repository has been archived on 2020-04-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Vim-Vixen/webpack.config.js
2017-08-11 23:15:47 +09:00

32 lines
503 B
JavaScript

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' ]
}
};