-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
30 lines (30 loc) · 1.03 KB
/
Copy pathtsconfig.base.json
File metadata and controls
30 lines (30 loc) · 1.03 KB
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
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"types": ["node"],
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": false,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"incremental": true,
// Kept inside each package's own outDir so `clean` is a single directory
// removal, with no glob for a shell to expand — cmd.exe would not expand
// one. `${configDir}` (TypeScript 5.5+) makes this resolve against the
// package that extends this file rather than against this file itself,
// which would collide all 11 packages on one path.
"tsBuildInfoFile": "${configDir}/dist/.tsbuildinfo",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}