This repository has been archived on 2025-02-07. You can view files and clone it, but cannot push or open issues or pull requests.
insiemesalute-3p-nx20-tsref/apps/ebitemp-api/tsconfig.app.json

29 lines
715 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "out-tsc/ebitemp-api",
"types": ["node"],
"rootDir": "src",
"tsBuildInfoFile": "out-tsc/ebitemp-api/tsconfig.app.tsbuildinfo",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "es2021",
"strictNullChecks": true,
"noImplicitAny": true,
"strictBindCallApply": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src/**/*.ts"],
"exclude": [
"out-tsc",
"dist",
"jest.config.ts",
"src/**/*.spec.ts",
"src/**/*.test.ts",
"eslint.config.js",
"eslint.config.cjs",
"eslint.config.mjs"
]
}