2026-06-28 03:28:45 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"exactOptionalPropertyTypes": false,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"types": ["vite/client", "node"],
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
|
},
|
|
|
|
|
"noEmit": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*", "vite.config.ts"],
|
2026-06-28 21:28:03 +02:00
|
|
|
"exclude": ["node_modules", "dist", "tests/e2e", "src/**/*.test.ts"]
|
2026-06-28 03:28:45 +02:00
|
|
|
}
|