Skip to content

Instantly share code, notes, and snippets.

@wojciech-bilicki
Created August 2, 2017 16:47
Show Gist options
  • Save wojciech-bilicki/5120b10499cebca967c717985859d274 to your computer and use it in GitHub Desktop.
Save wojciech-bilicki/5120b10499cebca967c717985859d274 to your computer and use it in GitHub Desktop.
webpack.config.js module #9
module: {
rules: [
{
enforce: 'pre',
test: /\.js?$/,
loader: 'eslint-loader',
exclude: /node_modules/
},
{
test: /\.jsx?$/,
loader: 'babel-loader'
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment