-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.spec.json
37 lines (37 loc) · 905 Bytes
/
tsconfig.spec.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
{
"compilerOptions": {
"typeRoots": ["./node_modules/@types"],
"module": "NodeNext",
"target": "es2022",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
"allowSyntheticDefaultImports": true,
"allowImportingTsExtensions": false,
"resolveJsonModule": true,
"isolatedModules": true,
"sourceMap": true,
"strictNullChecks": false,
"noEmit": true,
"lib": ["es2022", "esnext.disposable"],
"paths": {
"@app/config/*": ["config/*"]
},
"rootDir": null,
"baseUrl": ".",
"allowJs": true,
"customConditions": ["test", "development", "production"]
},
"exclude": ["node_modules"],
"references": [
{
"path": "./server/tsconfig.spec.json"
},
{
"path": "./db/tsconfig.spec.json"
},
{
"path": "./client/tsconfig.spec.json"
}
]
}