Skip to content

Instantly share code, notes, and snippets.

@adeelibr
Last active April 22, 2018 11:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adeelibr/67506e5849325c91ecf3f500e9e256aa to your computer and use it in GitHub Desktop.
Save adeelibr/67506e5849325c91ecf3f500e9e256aa to your computer and use it in GitHub Desktop.
webpack base configuration for only .js extension support
module.exports = {
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment