spiegel-keyman/web/.c8rc.json
Eberhard Beilharz 91fb28fa0a
chore(web): Add option to create test coverage report
This adds a `coverage` parameter to `web/build.sh` that will create
a coverage report in HTML format in `web/build/coverage/index.html`.
2023-12-01 20:04:35 +01:00

13 lines
253 B
JSON

{
"all": true,
"check-coverage": false,
"clean": true,
"exclude-after-remap": true,
"extension": [".ts", ".js"],
"reporter": ["text", "text-summary"],
"reports-dir": "build/coverage",
"src": [
"**/src/",
"../common/**/src"
]
}