feat: add nyc configuration

This commit is contained in:
Karl-Philipp Wulfert
2018-11-29 13:48:02 +01:00
parent 85228cef80
commit 883ab9bfa5

View File

@@ -0,0 +1,22 @@
{
"check-coverage": true,
"per-file": true,
"lines": 95,
"statements": 95,
"functions": 95,
"branches": 95,
"include": [
"src"
],
"exclude": [
"src/test/**/*.spec.ts"
],
"extension": [
".ts"
],
"reporter": [
"html",
"text-summary"
],
"all": true
}