lilith-platform.live/codebase/@features/api/tsconfig.json

60 lines
1.1 KiB
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/*"
],
"@/processors": [
"processors/index"
],
"@/processors/*": [
"processors/*"
],
"@/surfaces/*": [
"surfaces/*"
],
"@/features/*": [
"features/*"
],
"@/entities/*": [
"entities/*"
],
"@/shared/*": [
"shared/*"
],
"@/__tests__/*": [
"__tests__/*"
],
"@/lib/*": [
"lib/*"
]
}
},
"include": [
"src/**/*.ts"
],
"exclude": [
"src/mcp-seo/**",
"src/__tests__/setup.ts"
]
}