Skip to content

Instantly share code, notes, and snippets.

@chuyihuang
Last active April 9, 2016 03:23
Show Gist options
  • Save chuyihuang/bddebcd5e797cc2d1dca to your computer and use it in GitHub Desktop.
Save chuyihuang/bddebcd5e797cc2d1dca to your computer and use it in GitHub Desktop.
webpack babel example
module.exports = {
entry: "./app.js",
output: {
filename: "./bundle.js"
},
module: {
loaders: [
{
test: /jsx?$/,
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ['es2015']
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment