-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtsconfig.web.json
More file actions
35 lines (35 loc) · 1.03 KB
/
Copy pathtsconfig.web.json
File metadata and controls
35 lines (35 loc) · 1.03 KB
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
{
"compilerOptions": {
"target": "ES2023",
"lib": ["ES2023", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"types": [],
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"isolatedModules": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"useDefineForClassFields": true,
"composite": true,
"emitDeclarationOnly": true,
"declarationMap": true,
"rootDir": "src/renderer",
"outDir": ".tsc/web",
"tsBuildInfoFile": ".tsc/web.tsbuildinfo",
"baseUrl": ".",
"paths": {
"@shared/*": ["src/shared/*"],
"@renderer/*": ["src/renderer/*"]
}
},
"include": ["src/renderer/**/*.ts", "src/renderer/**/*.tsx"],
"exclude": ["src/renderer/__tests__/**", "src/renderer/**/__tests__/**"],
"references": [{ "path": "./tsconfig.shared.json" }]
}