Skip to content

Commit

Permalink
Fix nyc config to exclude built files from coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
lancedikson committed Jan 19, 2019
1 parent dedbe9f commit b2d641e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .nycrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
{
"sourceMap": false,
"instrument": false
"instrument": false,
"include": [
"src/**/*.js"
],
"exclude": [
"*.js"
]
}

0 comments on commit b2d641e

Please sign in to comment.