Files
landing-manager/backend/tsconfig.json
2026-03-05 10:35:28 +09:00

20 lines
418 B
JSON

{
"compilerOptions": {
"lib": [
"ESNext"
],
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"noUncheckedIndexedAccess": true,
"noEmit": true,
"types": [
"bun-types" // add Bun global
]
}
}