Skip to content

Commit

Permalink
chore: create c8 configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
screendriver committed Dec 10, 2022
1 parent 1416b40 commit d95d961
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .c8rc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"all": true,
"lines": 100,
"functions": 100,
"statements": 100,
"branches": 100,
"instrument": true,
"check-coverage": true,
"extension": [".ts"],
"reporter": ["lcov", "text-summary", "clover"],
"reportDir": "./target/coverage",
"tempDirectory": "./target/c8_output",
"include": ["src/**/*"],
"exclude": ["src/index.ts"]
}

0 comments on commit d95d961

Please sign in to comment.