-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
38 lines (38 loc) · 871 Bytes
/
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
{
"compilerOptions": {
"module": "commonjs",
"target": "esnext",
"lib": ["ESNext"],
"moduleResolution": "node",
"strict": true,
"strictNullChecks": true,
"allowJs": false,
"sourceMap": true,
"noEmitOnError": true,
"noEmit": false,
"composite": true,
"incremental": true,
"declaration": true,
"declarationMap": true,
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": false,
"types": [
"node",
"jest"
],
"paths": {
"@watr/commonlib": ["packages/commonlib/src"],
"@watr/services": ["packages/services/src"],
"@watr/field-extractors": ["packages/field-extractors/src"],
"@watr/spider": ["packages/spider/src"],
"@watr/root": ["packages/root/src"]
}
},
"exclude": [
"node_modules",
"dist"
],
"references": [
]
}