stack/apps/backend/tsconfig.json
Konstantin Wohlwend b11257fd5b Re-add Elysia backend transport
Keep the transport migration isolated on a dedicated branch so development can continue without blocking dev.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-13 12:41:55 -07:00

43 lines
713 B
JSON

{
"compilerOptions": {
"target": "es2020",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": false,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"noErrorTruncation": true,
"paths": {
"@/*": [
"./src/*"
]
},
"skipLibCheck": true,
"types": [
"vitest/importMeta"
]
},
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.?ts",
"**/*.?tsx"
],
"exclude": [
"api",
"node_modules",
".next/dev",
"dist"
]
}