-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
30 lines (30 loc) · 727 Bytes
/
tsconfig.base.json
File metadata and controls
30 lines (30 loc) · 727 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": {
"strict": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"sourceMap": true,
"declarationMap": true,
"declaration": true,
"moduleResolution": "node",
"strictNullChecks": true,
"incremental": true,
"composite": true,
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noErrorTruncation": true,
"isolatedModules": true,
"target": "ES2021",
"module": "ESNext",
"paths": {
"@internal/plugin-shared": ["./packages/plugin-shared/src"]
},
},
"exclude": [
"packages/**/dist",
"node_modules",
"packages/**/node_modules"
]
}