lilith-platform.live/codebase/@features/api/tsconfig.json
autocommit 779b16870a chore(api): 🔧 Update TypeScript compiler config for stricter API validation and path resolution
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-04-20 21:47:20 -07:00

30 lines
818 B
JSON

{
"compilerOptions": {
"target": "ES2023",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2023"],
"types": ["bun"],
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"exactOptionalPropertyTypes": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noEmit": true,
"baseUrl": "src",
"paths": {
"@/app/*": ["app/*"],
"@/surfaces/*": ["surfaces/*"],
"@/features/*": ["features/*"],
"@/entities/*": ["entities/*"],
"@/shared/*": ["shared/*"],
"@/__tests__/*": ["__tests__/*"]
}
},
"include": ["src/**/*.ts"],
"exclude": ["src/mcp-seo/**", "src/__tests__/setup.ts"]
}