Skip to content

Instantly share code, notes, and snippets.

@kilgarenone
Last active September 13, 2018 08:55
Show Gist options
  • Save kilgarenone/b607226c1fa930fa3e59418298a1b4db to your computer and use it in GitHub Desktop.
Save kilgarenone/b607226c1fa930fa3e59418298a1b4db to your computer and use it in GitHub Desktop.
babelrc to enable es6/es7 webpack4 in serverless
{
"plugins": ["source-map-support"],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8.10"
}
}
]
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment