You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
547 B
27 lines
547 B
3 years ago
|
{
|
||
|
"require": [
|
||
|
"@babel/register"
|
||
|
],
|
||
|
"reporter": [
|
||
|
"lcov",
|
||
|
"text-summary"
|
||
|
],
|
||
|
"include": [
|
||
|
"source/**/*.js"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"source/findNumbers/Leniency.js",
|
||
|
"source/findNumbers/RegExpCache.js",
|
||
|
"source/findNumbers/LRUCache.js",
|
||
|
"source/PhoneNumberMatcher.js",
|
||
|
"source/formatNumberForMobileDialing.js",
|
||
|
"source/tools/*.js",
|
||
|
"**/*.test.js"
|
||
|
],
|
||
|
"check-coverage": true,
|
||
|
"lines": "100",
|
||
|
"sourceMap": false,
|
||
|
"instrument": false,
|
||
|
"cache": true,
|
||
|
"all": true
|
||
|
}
|