Created
September 8, 2018 16:11
-
-
Save denysonique/465bc3ae44e0b029c22c2b16b5c61e9a to your computer and use it in GitHub Desktop.
This file contains 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": [ | |
[ | |
"@babel/env", | |
{ | |
"modules": "commonjs" | |
} | |
], | |
[ | |
"@babel/typescript", { | |
"modules": "commonjs" | |
} | |
] | |
], | |
"plugins": [ | |
"@babel/plugin-proposal-object-rest-spread", | |
"@babel/plugin-proposal-function-bind", | |
"@babel/plugin-proposal-class-properties", | |
"@babel/plugin-transform-regenerator", | |
"@babel/plugin-transform-runtime" | |
], | |
"env": { | |
"test": { | |
"plugins": [] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment