Skip to content

Commit

Permalink
Disable Istanbul plugin whenever Babel transpiles non-test code
Browse files Browse the repository at this point in the history
  • Loading branch information
tassoevan committed Sep 7, 2023
1 parent e0607a3 commit b5b06ab
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions apps/meteor/.babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"babel-plugin-istanbul"
]
"env": {
"test": {
"plugins": ["istanbul"]
}
}
}

0 comments on commit b5b06ab

Please sign in to comment.