Skip to content

Instantly share code, notes, and snippets.

@jkimbo
Created August 8, 2016 09:45
Show Gist options
  • Save jkimbo/1744582ee66b8c281506cad4f6453e7f to your computer and use it in GitHub Desktop.
Save jkimbo/1744582ee66b8c281506cad4f6453e7f to your computer and use it in GitHub Desktop.
module.exports = {
devtool: 'cheap-module-source-map', // might want to change this `source-map` for prod builds
entry: './entry',
output: {
path: './build',
pathinfo: true,
filename: 'bundle.js',
},
resolve: {
// These are the reasonable defaults supported by the Node ecosystem.
extensions: ['.js', '.json', ''],
},
module: {
loaders: [
// Process JS with Babel.
{
test: /\.js$/,
include: './src',
loader: 'babel-loader',
query: { cacheDirectory: true }
},
]
},
plugins: []
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment