Skip to content

Instantly share code, notes, and snippets.

@asimpson
Last active March 23, 2017 11:17
Show Gist options
  • Save asimpson/6f594c59775ece4db0f0 to your computer and use it in GitHub Desktop.
Save asimpson/6f594c59775ece4db0f0 to your computer and use it in GitHub Desktop.
var webpack = require('webpack');
module.exports = {
entry: [
'./components/Root.js'
],
output: {
path: __dirname,
filename: "app.js"
},
module: {
loaders: [
{
test: /\.js$/,
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