2026-03-07 21:44:42 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"types": ["vite/client"],
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
/* Bundler mode */
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
/* Linting */
|
|
|
|
|
"strict": true,
|
|
|
|
|
"erasableSyntaxOnly": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2026-03-12 00:42:41 +02:00
|
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"],
|
|
|
|
|
"@components/*": ["src/components/*"]
|
|
|
|
|
}
|
2026-03-07 21:44:42 +02:00
|
|
|
},
|
|
|
|
|
"include": ["src"]
|
|
|
|
|
}
|