Skip to content

Instantly share code, notes, and snippets.

@ashee
Last active June 12, 2016 15:35
Show Gist options
  • Save ashee/b303d162b1497412c71b316abfed14f8 to your computer and use it in GitHub Desktop.
Save ashee/b303d162b1497412c71b316abfed14f8 to your computer and use it in GitHub Desktop.
webpack config
module.exports = {
entry: './app.js',
output: {
path: __dirname,
filename: 'bundle.js',
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel',
query: { presets: [ 'es2015', 'stage-0', 'react' ] }
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment