Created
October 15, 2019 18:54
-
-
Save deepal/b4d636de4749c98bdd2bf88b08164098 to your computer and use it in GitHub Desktop.
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
{ | |
"babel": { | |
"env": { | |
"test": { | |
"plugins": [ | |
"istanbul" | |
] | |
} | |
}, | |
"presets": [ | |
[ | |
"@babel/preset-env", | |
{ | |
"targets": { | |
"node": "current" | |
}, | |
"modules": "commonjs", | |
"useBuiltIns": false, | |
"debug": true | |
} | |
] | |
], | |
"sourceMaps": true, | |
"retainLines": true, | |
"plugins": [ | |
"@babel/plugin-proposal-object-rest-spread", | |
"@babel/plugin-proposal-optional-chaining" | |
] | |
}, | |
"nyc": { | |
"extension": [ | |
".js" | |
], | |
"include": "src/**/*.js", | |
"require": [ | |
"@babel/register" | |
], | |
"reporter": [ | |
"lcov", | |
"text-summary" | |
], | |
"sourceMap": false, | |
"instrument": false, | |
"all": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment