Skip to content

Instantly share code, notes, and snippets.

@junibrosas
Created September 4, 2019 05:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save junibrosas/fdb91123093c27fd38832d88283eb6cf to your computer and use it in GitHub Desktop.
Save junibrosas/fdb91123093c27fd38832d88283eb6cf to your computer and use it in GitHub Desktop.
Transpile async await
{
"presets": [
["@babel/preset-env", {
"modules": false,
"useBuiltIns": "entry",
"targets": {
"browsers": [
"> 0.25%",
"not dead"
],
"node": "current"
}
}],
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-transform-runtime",
"@babel/plugin-transform-async-to-generator"
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment