2025-08-07 02:20:27 -05:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"strict": false,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"noImplicitReturns": false,
|
|
|
|
|
"noFallthroughCasesInSwitch": false,
|
|
|
|
|
"noUncheckedSideEffectImports": false,
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"noImplicitThis": false,
|
|
|
|
|
"noUncheckedIndexedAccess": false,
|
|
|
|
|
"exactOptionalPropertyTypes": false,
|
|
|
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
|
|
|
"allowUnusedLabels": true,
|
|
|
|
|
"allowUnreachableCode": true,
|
|
|
|
|
"noImplicitOverride": false,
|
|
|
|
|
"noEmitOnError": false,
|
|
|
|
|
"paths": {
|
2026-05-28 22:29:20 -05:00
|
|
|
"@/types/*": ["./src/types/*"],
|
2026-05-11 01:23:11 -05:00
|
|
|
"@/*": ["./src/ui/*"]
|
2025-08-07 02:20:27 -05:00
|
|
|
}
|
|
|
|
|
},
|
2026-06-04 15:16:53 -04:00
|
|
|
"include": [
|
|
|
|
|
"src/main.tsx",
|
|
|
|
|
"src/ui/**/*.ts",
|
|
|
|
|
"src/ui/**/*.tsx",
|
|
|
|
|
"src/types/**/*.ts"
|
|
|
|
|
]
|
2025-08-07 02:20:27 -05:00
|
|
|
}
|