Skip to content

Instantly share code, notes, and snippets.

@trinwin
Last active August 3, 2020 05:25
Show Gist options
  • Save trinwin/0bbc1def630a40d352ef734fbb940d62 to your computer and use it in GitHub Desktop.
Save trinwin/0bbc1def630a40d352ef734fbb940d62 to your computer and use it in GitHub Desktop.
{
"presets": ["@babel/preset-env", "@babel/preset-react", "@babel/preset-flow"],
"plugins": [
"@babel/plugin-transform-runtime",
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-proposal-class-properties"
],
"env": {
"development": {
"plugins": ["transform-es2015-modules-commonjs"]
},
"test": {
"plugins": [
"transform-es2015-modules-commonjs",
"@babel/plugin-proposal-class-properties"
],
"presets": ["@babel/preset-react"]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment