-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (28 loc) · 1.08 KB
/
Copy pathtsconfig.json
File metadata and controls
29 lines (28 loc) · 1.08 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
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Node",
"strict": true,
"jsx": "preserve",
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"types": ["node"],
"skipLibCheck": true
},
"//": [
"skipLibCheck is on because vitest 1.x nests its own Vite 5 while the app builds",
"on Vite 6; the two ship incompatible declarations for the same types, and",
"checking them proves nothing about this codebase.",
"electron/ is deliberately absent: it is CommonJS .cjs and allowJs is off, so",
"listing it here type-checked nothing while suggesting it did. The main process",
"is covered by the eslint block in eslint.config.mjs instead.",
"tests/ and scripts/ are present because they were checked by nothing at all -",
"vitest transpiles without type-checking, so a broken type in a test only",
"surfaced when the test ran."
],
"include": ["src/**/*", "tests/**/*", "scripts/**/*"]
}