Skip to content

Instantly share code, notes, and snippets.

@priley86
Created March 7, 2018 15:47
Show Gist options
  • Save priley86/552f1e0dcf05bc64df8fac8114a3870f to your computer and use it in GitHub Desktop.
Save priley86/552f1e0dcf05bc64df8fac8114a3870f to your computer and use it in GitHub Desktop.
babelrc
{
"presets": [
[
"env",
{
"modules": false,
"targets": {
"browsers": [
"> 1%",
"last 2 versions",
"Firefox ESR",
"IE 10",
"IE 11"
]
}
}
],
"react"
],
"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