Skip to content

Instantly share code, notes, and snippets.

@thomasfr
Created June 14, 2017 11:55
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 thomasfr/c8b821300f327677f009d9ba378b147b to your computer and use it in GitHub Desktop.
Save thomasfr/c8b821300f327677f009d9ba378b147b to your computer and use it in GitHub Desktop.
babelrc with babel-preset-env to just compile necessary ES features for given node version. With support for flow types
{
"presets": [
[
"env",
{
"targets": {
"node": "6.10"
}
}
],
"flow"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment