Skip to content

Commit

Permalink
chore: add .nycrc file to ts example
Browse files Browse the repository at this point in the history
This makes the example independent of the root project
  • Loading branch information
mefellows committed Jul 10, 2024
1 parent 50517c0 commit 74d2e76
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions examples/typescript/.nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts",
"**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"lcovonly"
],
"sourceMap": true,
"instrument": true,
"lines": 50,
"statements": 50,
"functions": 50,
"branches": 50
}

0 comments on commit 74d2e76

Please sign in to comment.