Skip to content

Instantly share code, notes, and snippets.

@zrrtcs
Created December 6, 2016 16:15
Show Gist options
  • Select an option

  • Save zrrtcs/13aa9a4d6b2bae89b6955a94927470dc to your computer and use it in GitHub Desktop.

Select an option

Save zrrtcs/13aa9a4d6b2bae89b6955a94927470dc to your computer and use it in GitHub Desktop.
module.exports = {
entry: './src/js/index.js',
output: {
filename: './dist/js/index.js'
},
module: {
loaders: [{
loader: 'babel',
exclude: /node_modules/,
include: '/src/', //include should be in array
test: /\.js$/,
query: {
presets: ['es2015', 'stage-0', 'react']
}
}]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment