Permalink
Switch branches/tags
Nothing to show
Find file
Fetching contributors…
Cannot retrieve contributors at this time
17 lines (15 sloc) 290 Bytes
var path = require('path');
module.exports = {
entry: './src/demo.js',
module: {
loaders: [{
test: /\.js/,
loaders: ['babel'],
include: path.join(__dirname, 'src')
}]
},
output: {
path: path.join(__dirname, 'build'),
filename: 'demo_out.js'
}
}