Skip to content

Instantly share code, notes, and snippets.

@priley86
Created March 7, 2018 16:00
Show Gist options
  • Save priley86/d7885321f2d24146fa5956d8d840a5fc to your computer and use it in GitHub Desktop.
Save priley86/d7885321f2d24146fa5956d8d840a5fc to your computer and use it in GitHub Desktop.
current babel setup
{
"presets": [
[
"env",
{
"targets": {
"browsers": [
"> 1%",
"last 2 versions",
"Firefox ESR",
"IE 10",
"IE 11"
]
}
}
],
"react",
"es2015",
"stage-1"
],
"plugins": [
"transform-class-properties",
"transform-export-extensions",
"transform-object-rest-spread",
"transform-object-assign"
],
"env": {
"test": {
"plugins": ["transform-es2015-modules-commonjs"]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment