canina/backend/tsconfig.json
parsa aghaei f1b77f3fba
All checks were successful
Deploy Canina / deploy (push) Successful in 32s
fix(backend): fix dist output structure and runtime entrypoint in Dockerfile
2026-08-16 14:31:09 +03:30

29 lines
801 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",
"rootDir": "./src",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"strictBindCallApply": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "scripts", "prisma", "**/*.spec.ts"]
}