Last active
September 10, 2017 10:53
-
-
Save gndplayground/38f7c7589da06a13d34e4b23877b8354 to your computer and use it in GitHub Desktop.
Babel loader use settings in Webpack 3 instead .babelrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
test: /\.js|jsx?$/, | |
loaders: [ | |
{ | |
loader: 'babel-loader', | |
options: { | |
babelrc: false, | |
presets: [ | |
['es2015', { modules: false }], | |
'stage-2', | |
'react', | |
], | |
plugins: [ | |
'react-hot-loader/babel', | |
'babel-plugin-styled-components', | |
], | |
}, | |
}, | |
], | |
exclude: /node_modules/, | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment