api-server/tsconfig.json
WangDL 34065931dd
Some checks failed
Deploy API Server / build-and-deploy (push) Failing after 18s
fix: silence baseUrl deprecation warning in TS 6.x
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-24 16:20:50 +08:00

27 lines
710 B
JSON

{
"compilerOptions": {
"module": "nodenext",
"moduleResolution": "nodenext",
"resolvePackageJsonExports": true,
"esModuleInterop": true,
"isolatedModules": true,
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2023",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"ignoreDeprecations": "6.0",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false,
"strictBindCallApply": false,
"noFallthroughCasesInSwitch": false
}
}