30 lines
847 B
JSON
30 lines
847 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"moduleDetection": "force",
|
|
"jsx": "react-jsx",
|
|
|
|
// Trap from STACK_DECISIONS §7.2: "types" now defaults to [] rather than ["*"] —
|
|
// without this line the global types of Node and Vite disappear silently.
|
|
"types": ["node", "vite/client"],
|
|
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"verbatimModuleSyntax": true,
|
|
"isolatedModules": true,
|
|
"erasableSyntaxOnly": true,
|
|
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true
|
|
},
|
|
"include": ["src", "scripts", "vite.config.ts"]
|
|
}
|