2017-08-30 02:47:15 +03:00

20 lines
286 B
JavaScript

const path = require('path');
module.exports = {
entry: './index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
},
module: {
rules: [
{
test: /\.js$/,
use: [
'babel-loader'
]
}
]
}
};