forked from tapjs/tapjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
48 lines (48 loc) · 1.35 KB
/
tsconfig.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"include": ["scripts/*"],
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"inlineSources": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"target": "es2022",
"module": "nodenext"
},
"references": [
{ "path": "./src/after" },
{ "path": "./src/after-each" },
{ "path": "./src/asserts" },
{ "path": "./src/before" },
{ "path": "./src/before-each" },
{ "path": "./src/chdir" },
{ "path": "./src/config" },
{ "path": "./src/core" },
{ "path": "./src/create-plugin" },
{ "path": "./src/esbuild-kit" },
{ "path": "./src/filter" },
{ "path": "./src/fixture" },
{ "path": "./src/intercept" },
{ "path": "./src/mocha-globals" },
{ "path": "./src/mock" },
{ "path": "./src/nock" },
{ "path": "./src/npm-init-template" },
{ "path": "./src/parser" },
{ "path": "./src/run" },
{ "path": "./src/sinon" },
{ "path": "./src/snapshot" },
{ "path": "./src/spawn" },
{ "path": "./src/stack" },
{ "path": "./src/stdin" },
{ "path": "./src/synonyms" },
{ "path": "./src/tap" },
{ "path": "./src/tcompare" },
{ "path": "./src/test" },
{ "path": "./src/typescript" },
{ "path": "./src/yaml" }
]
}