-
-
Notifications
You must be signed in to change notification settings - Fork 143
/
tsconfig.json
60 lines (55 loc) · 1.4 KB
/
tsconfig.json
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"removeComments": true,
"preserveConstEnums": true,
"strict": true,
"alwaysStrict": true,
"strictNullChecks": true,
"noUncheckedIndexedAccess": true,
"jsx": "react-jsx",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"allowUnreachableCode": false,
"noFallthroughCasesInSwitch": true,
"target": "es2020",
"outDir": "dist",
"sourceMap": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"checkJs": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"isolatedModules": true,
"incremental": true,
"useDefineForClassFields": true,
"baseUrl": ".",
"types": ["vite/client", "@types/vscode-webview"],
"paths": {
"@extension/*": ["src/extension/*"],
"@webview/*": ["./src/webview/*"],
"@shared/*": ["./src/shared/*"]
}
},
"include": [
"**/*.ts",
"**/*.tsx",
"src/**/*.json",
"*.json",
"*.ts",
"*.js",
"*.cjs",
"*.mjs",
"vite.config.mts"
],
"exclude": ["**/dist/**", "**/node_modules/**", "cz-adapter.cjs"]
}