summaryrefslogtreecommitdiffstats
path: root/.nycrc
blob: 554cb6906807de85f4d7353054047d97f1fccea5 (plain)
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
{
    "extends": "@istanbuljs/nyc-config-typescript",
    "cache": false,
    "cwd": "./",
    "exclude": [
        "**/**.test.js"
    ],
    "extension": [
        ".ts",
        ".tsx"
    ],
    "hookRequire": true,
    "hookRunInContext": true,
    "hookRunInThisContext": true,
    "instrument": true,
    "reporter": ["json", "text"],
    "recursive": true,
    "require": [
        "ts-node/register",
        "source-map-support/register"
    ],
    "sourceMap": true,
    "all": true,
    "include": [ "src/Lang" ]
}