2026-04-18 05:50:24 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2023",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
2026-05-16 04:42:56 -07:00
|
|
|
"lib": [
|
|
|
|
|
"ES2023"
|
|
|
|
|
],
|
|
|
|
|
"types": [
|
|
|
|
|
"bun"
|
|
|
|
|
],
|
2026-04-18 05:50:24 -07:00
|
|
|
"strict": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"baseUrl": "src",
|
|
|
|
|
"paths": {
|
2026-05-16 04:42:56 -07:00
|
|
|
"@/app/*": [
|
|
|
|
|
"app/*"
|
|
|
|
|
],
|
|
|
|
|
"@/processors": [
|
|
|
|
|
"processors/index"
|
|
|
|
|
],
|
|
|
|
|
"@/processors/*": [
|
|
|
|
|
"processors/*"
|
|
|
|
|
],
|
|
|
|
|
"@/surfaces/*": [
|
|
|
|
|
"surfaces/*"
|
|
|
|
|
],
|
|
|
|
|
"@/features/*": [
|
|
|
|
|
"features/*"
|
|
|
|
|
],
|
|
|
|
|
"@/entities/*": [
|
|
|
|
|
"entities/*"
|
|
|
|
|
],
|
|
|
|
|
"@/shared/*": [
|
|
|
|
|
"shared/*"
|
|
|
|
|
],
|
|
|
|
|
"@/__tests__/*": [
|
|
|
|
|
"__tests__/*"
|
|
|
|
|
],
|
|
|
|
|
"@/lib/*": [
|
|
|
|
|
"lib/*"
|
|
|
|
|
]
|
2026-04-18 05:50:24 -07:00
|
|
|
}
|
|
|
|
|
},
|
2026-05-16 04:42:56 -07:00
|
|
|
"include": [
|
|
|
|
|
"src/**/*.ts"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"src/mcp-seo/**",
|
2026-06-19 06:46:08 -05:00
|
|
|
"src/mcp-prospector/**",
|
2026-05-16 04:42:56 -07:00
|
|
|
"src/__tests__/setup.ts"
|
|
|
|
|
]
|
2026-04-18 05:50:24 -07:00
|
|
|
}
|