Skip to content

Instantly share code, notes, and snippets.

@khle
Created January 26, 2016 05:52
Show Gist options
  • Select an option

  • Save khle/28593e64bceebf57cc2d to your computer and use it in GitHub Desktop.

Select an option

Save khle/28593e64bceebf57cc2d to your computer and use it in GitHub Desktop.
CycleSocket Chat webpack.config.js
module.exports = {
entry: './src/main.js',
output: {
filename: './dist/bundle.js'
},
devtool: 'source-map',
module: {
loaders: [
{
test : /.js$/,
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ['es2015', 'stage-0']
}
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment