platform-codebase/features/platform-user/frontend-app/tsconfig.json
Lilith 63d145ddd2 chore(config): 🔧 Update config files in 4 JS modules to maintain consistency
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-13 04:32:45 -08:00

37 lines
733 B
JSON
Executable file

{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"types": [
"vite/client"
],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
}
},
"include": [
"src"
]
}