Skip to content

Instantly share code, notes, and snippets.

@deepal
Created October 15, 2019 18:54
Show Gist options
  • Save deepal/b4d636de4749c98bdd2bf88b08164098 to your computer and use it in GitHub Desktop.
Save deepal/b4d636de4749c98bdd2bf88b08164098 to your computer and use it in GitHub Desktop.
{
"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