lilith-platform.live/codebase/@features/api/tsconfig.json
autocommit ae355cce0d deps-upgrade(api): ⬆️ Update TypeScript, Vite, and Vitest tooling to align with latest dependency versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-04-18 19:25:56 -07:00

29 lines
752 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/*"]
}
},
"include": ["src/**/*.ts"],
"exclude": ["src/mcp-seo/**"]
}