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