Skip to content

Instantly share code, notes, and snippets.

@r-winkler
Created August 20, 2016 07:41
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 r-winkler/737aec009fc7cc025b29f123504e20be to your computer and use it in GitHub Desktop.
Save r-winkler/737aec009fc7cc025b29f123504e20be to your computer and use it in GitHub Desktop.
module.exports = {
entry: './js/app.js',
output: {
path: './build',
filename: 'bundle.js'
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
query: {
presets: ['es2015']
}
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment