module.exports = { entry: { example: './example.js' }, module: { loaders: [ { test: /\.jsx?$/, exclude: /node_modules/, loader: 'babel-loader', query: { cacheDirectory: true } } ] }, output: { filename: 'example.js', path: '../dist' } }