Skip to content

Instantly share code, notes, and snippets.

@forgo
Created October 19, 2018 16:42
Show Gist options
  • Select an option

  • Save forgo/30efc98d04e59707996fe4fe3e37c13e to your computer and use it in GitHub Desktop.

Select an option

Save forgo/30efc98d04e59707996fe4fe3e37c13e to your computer and use it in GitHub Desktop.
React default and test babel configurations using stage-2 preset
{
"presets": [
[ "env", { "modules": false } ],
"react",
"stage-2"
],
"env": {
"test": {
"presets": [
[ "env", { "targets": {"node": "current"} } ],
"react",
"stage-2"
],
"plugins": [
[ "babel-plugin-webpack-aliases", { "config": "./webpack.config.js" } ]
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment