2024-10-19 21:05:52 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2024-11-22 13:48:00 +01:00
|
|
|
"target": "ES2022",
|
2024-10-19 21:05:52 +02:00
|
|
|
"useDefineForClassFields": true,
|
2024-11-22 13:48:00 +01:00
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
2025-12-23 16:30:04 +01:00
|
|
|
"types": ["node", "vite/client", "vitest/importMeta"],
|
2024-10-19 21:05:52 +02:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
|
|
|
|
|
"strict": true,
|
|
|
|
|
|
2025-12-23 16:30:04 +01:00
|
|
|
"esModuleInterop": true,
|
2024-10-19 21:05:52 +02:00
|
|
|
"allowUnusedLabels": false,
|
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
2024-11-22 13:48:00 +01:00
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
2025-12-23 16:30:04 +01:00
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"resolveJsonModule": true,
|
2024-10-19 21:05:52 +02:00
|
|
|
|
|
|
|
|
"checkJs": true,
|
2025-04-18 20:22:56 +02:00
|
|
|
"verbatimModuleSyntax": true,
|
2024-10-19 21:05:52 +02:00
|
|
|
|
|
|
|
|
"forceConsistentCasingInFileNames": true
|
|
|
|
|
}
|
|
|
|
|
}
|