atlilith/@platform/codebase/tsconfig.base.json
autocommit 8724e5e0e9 chore(codebase): 🔧 Implement strict TypeScript compiler options and optimize performance settings
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-05-17 01:33:45 -07:00

12 lines
336 B
JSON

{
"extends": "@lilith/configs/typescript/base.json",
"compilerOptions": {
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"useDefineForClassFields": true,
"noEmit": true
},
"exclude": ["node_modules", "dist", "build"]
}