Created
March 7, 2018 16:00
-
-
Save priley86/d7885321f2d24146fa5956d8d840a5fc to your computer and use it in GitHub Desktop.
current babel setup
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
{ | |
"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