-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
35 lines (35 loc) · 1005 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
{
"compilerOptions": {
"incremental": true,
"target": "ES2022",
"composite": true,
"module": "commonjs",
"outDir": "./tsbuild",
"lib": [
"ES2022"
],
"removeComments": true,
"allowJs": true,
"checkJs": false,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"skipLibCheck": true,
"strict": true,
"noImplicitAny": false,
"strictNullChecks": true,
"esModuleInterop": true,
"useUnknownInCatchVariables": false,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"types": [
"node"
]
},
"exclude": ["__dist_old", "dist", "commitlint.config.js", "jest.preset.js", "tools/scripts/publish.mjs", "apps"],
"references": [
{"path": "libs/shared"},
{"path": "libs/prisma-generator-nestjs"},
{"path": "libs/prisma-generator-dart"}
]
}