Files
Termix/tsconfig.app.json
T

44 lines
1.2 KiB
JSON
Raw Normal View History

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": {
+5
2026-08-19 14:12:06 -05:00
"@/types": ["./src/types/index.ts"],
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",
+5
2026-08-19 14:12:06 -05:00
"src/vite-env.d.ts",
2026-06-04 15:16:53 -04:00
"src/ui/**/*.ts",
"src/ui/**/*.tsx",
"src/types/**/*.ts"
]
2025-08-07 02:20:27 -05:00
}