Skip to content

Instantly share code, notes, and snippets.

@codemilli
Created February 11, 2016 19:37
Show Gist options
  • Save codemilli/e17013d675714d9c8bd4 to your computer and use it in GitHub Desktop.
Save codemilli/e17013d675714d9c8bd4 to your computer and use it in GitHub Desktop.
module.exports = {
entry: './index.js',
output: {
filename: 'bundle.js'
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ['react', 'es2015']
}
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment