Created
March 7, 2018 15:47
-
-
Save priley86/552f1e0dcf05bc64df8fac8114a3870f to your computer and use it in GitHub Desktop.
babelrc
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
Show hidden characters
{ | |
"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