mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 17:05:34 +00:00
This adds a `coverage` parameter to `web/build.sh` that will create a coverage report in HTML format in `web/build/coverage/index.html`.
13 lines
253 B
JSON
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"
|
|
]
|
|
}
|