production-evyos-systems-an.../ServicesApi/tsconfig.json

28 lines
679 B
JSON

{
"compilerOptions": {
"types": ["node"],
"typeRoots": ["./node_modules/@types"],
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2023",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false,
"strictBindCallApply": false,
"noFallthroughCasesInSwitch": false,
// "baseUrl": "./src",
"paths": {
"@/*": ["*"]
}
}
}