1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| {
| "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
| }
|
|