Last active
September 13, 2018 08:55
-
-
Save kilgarenone/b607226c1fa930fa3e59418298a1b4db to your computer and use it in GitHub Desktop.
babelrc to enable es6/es7 webpack4 in serverless
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
{ | |
"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