Created
October 19, 2018 00:25
-
-
Save jkinkead/a6fc25bdea0f8c1f2a88b4a114878d27 to your computer and use it in GitHub Desktop.
@babel/react snippet for webpack config
This file contains hidden or 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
... | |
module: { | |
rules: [{ | |
test: /\.js?$/, | |
loader: 'babel-loader', | |
options: { | |
presets: ["@babel/react", ["@babel/preset-env", {"modules": false}]] | |
}, | |
exclude: /node_modules/ | |
}] | |
}, | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment