-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.web.json
More file actions
24 lines (24 loc) · 966 Bytes
/
tsconfig.web.json
File metadata and controls
24 lines (24 loc) · 966 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
{
"extends": "@electron-toolkit/tsconfig/tsconfig.web.json",
"include": [
"src/renderer/src/env.d.ts",
"src/renderer/src/**/*",
"src/renderer/src/**/*.tsx",
"src/preload/*.d.ts"
],
"exclude": ["**/*.cy.tsx", "**/*.test.tsx", "**/*.cy.ts", "**/*.test.ts"],
"compilerOptions": {
"composite": true,
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"@renderer/*": ["src/renderer/src/*"],
"@model/*": ["src/renderer/src/model/*"]
},
"noUnusedParameters": false /* Raise an error when a function parameter isn't read. */,
"exactOptionalPropertyTypes": false /* Interpret optional property types as written, rather than adding 'undefined'. */,
"noUncheckedIndexedAccess": false /* Add 'undefined' to a type when accessed using an index. */,
"noImplicitReturns": false /* Don't require all code paths to return a value. */,
"strictNullChecks": false /* allow the program to imply the type */
}
}