-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
30 lines (30 loc) · 875 Bytes
/
tsconfig.base.json
File metadata and controls
30 lines (30 loc) · 875 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": {
"module": "ESNext",
"target": "ES2022",
"lib": ["ES2022"],
"sourceMap": true,
"rootDir": ".",
"strict": true /* enable all strict type-checking options */,
"baseUrl": ".",
"paths": {
"@/services/*": ["src/services/*"],
"@/providers/*": ["src/providers/*"],
"@/commands/*": ["src/commands/*"],
"@/utils/*": ["src/utils/*"],
"@/models/*": ["src/models/*"],
"@/kernel/*": ["src/kernel/*"],
"@/test/*": ["src/test/*"],
"@core/*": ["../core/lib/*"]
},
/* Additional Strict Checks - Phase 1 & 2 */
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true
},
"include": ["src", "webview"],
"exclude": ["node_modules"]
}