2026-05-12 15:05:56 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"ignoreDeprecations": "6.0",
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2026-05-13 01:13:02 +00:00
|
|
|
"resolveJsonModule": true,
|
2026-05-22 22:23:43 +00:00
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"noUncheckedSideEffectImports": true,
|
2026-05-12 15:05:56 +00:00
|
|
|
"strict": true,
|
2026-06-07 04:20:49 +00:00
|
|
|
"noUnusedLocals": true,
|
2026-05-22 22:23:43 +00:00
|
|
|
"noImplicitOverride": true,
|
2026-05-22 22:28:46 +00:00
|
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
2026-05-22 22:54:26 +00:00
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
2026-05-12 15:05:56 +00:00
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"isolatedModules": true,
|
2026-05-27 10:37:11 +00:00
|
|
|
"jsx": "react-jsx",
|
2026-05-31 03:37:18 +00:00
|
|
|
"jsxImportSource": "preact",
|
2026-05-12 15:05:56 +00:00
|
|
|
"types": ["node", "vitest"],
|
|
|
|
|
"lib": ["ES2022", "DOM"]
|
|
|
|
|
},
|
2026-05-27 10:37:11 +00:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "tests/**/*.ts", "tests/**/*.tsx", "vitest.config.ts"]
|
2026-05-12 15:05:56 +00:00
|
|
|
}
|