Skip to content

Instantly share code, notes, and snippets.

@gurucharanmk
Created April 20, 2016 13:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gurucharanmk/a5d4fc985d87ebd78a36d4702300a781 to your computer and use it in GitHub Desktop.
Save gurucharanmk/a5d4fc985d87ebd78a36d4702300a781 to your computer and use it in GitHub Desktop.
module.exports = {
entry:'./script.js',
output:{
filename:'bundle.js'
},
module:{
loaders:[
{
test: /\.js?/,
loader: 'babel',
exclude: /node_modules/,
query: {
cacheDirectory: true,
presets: ['es2015']
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment