forked from beyond-all-reason/bar-lobby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.web.json
More file actions
22 lines (21 loc) · 787 Bytes
/
Copy pathtsconfig.web.json
File metadata and controls
22 lines (21 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"extends": "./tsconfig.shared.json",
"include": ["src/main/", "src/renderer/env.d.ts", "src/renderer/typed-router.d.ts", "src/renderer/**/*", "src/renderer/**/*.vue", "src/preload/*.d.ts"],
"compilerOptions": {
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"composite": true,
"baseUrl": ".",
"paths": {
"@main/*": ["src/main/*"], // TODO: Remove direct references to main
"@preload/*": ["src/preload/*"],
"@renderer/*": ["src/renderer/*"],
"$/*": ["vendor/*"]
},
"strict": true,
"strictNullChecks": true,
// TODO: Enable these for better typechecking
"noImplicitReturns": false,
"noUnusedLocals": false,
"noUnusedParameters": false
}
}