-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtsconfig.options.json
More file actions
33 lines (33 loc) · 969 Bytes
/
tsconfig.options.json
File metadata and controls
33 lines (33 loc) · 969 Bytes
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
{
"compilerOptions": {
"moduleResolution": "NodeNext",
"module": "NodeNext",
"target": "ESNext",
"strict": true,
"emitDeclarationOnly": true, // Required for composite builds.
"composite": true,
"outDir": "${configDir}/compile", // Specify an output folder for all emitted files.
"tsBuildInfoFile": "${configDir}/compile/.tsbuildinfo", // Specify the folder for .tsbuildinfo incremental compilation files.
"useUnknownInCatchVariables": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"noImplicitReturns": false,
"noUncheckedIndexedAccess": true,
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"isolatedModules": true,
"skipLibCheck": true
},
"exclude": [
"apps/docs/**/*",
"compile/",
"**/*/compile/**/*",
"**/*/dist/**/*",
"node_modules",
"tsup.config.ts",
"**/tsup.config.ts"
]
}