-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
30 lines (29 loc) · 839 Bytes
/
Copy pathtsconfig.base.json
File metadata and controls
30 lines (29 loc) · 839 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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"composite": true,
"moduleResolution": "bundler",
"esModuleInterop": true,
"moduleDetection": "force",
"declaration": true,
"declarationMap": true,
"incremental": true,
"customConditions": ["@effective/source"],
"allowSyntheticDefaultImports": false,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"sourceMap": true,
"tsBuildInfoFile": ".tsbuildinfo",
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": true,
"exactOptionalPropertyTypes": true,
"noEmit": false,
"rootDir": "${configDir}/src",
"outDir": "${configDir}/dist"
},
"include": ["${configDir}/src"],
"exclude": ["${configDir}/dist"]
}