Last active
June 24, 2017 16:45
-
-
Save zwacky/b9264cc6eca51c1c671b951d8d924ae9 to your computer and use it in GitHub Desktop.
a basic .babelrc for setting up async/await support
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": [ | |
"last 2 versions", | |
"IE >= 9" | |
] | |
} | |
} | |
] | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment