digiHome-SP-NestJs/tsconfig.json
2023-07-27 16:03:34 +08:00

35 lines
738 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"paths": {
"@": [
"./src"
]
},
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false
},
"include": [
"src/**/*.ts",
"src/**/*d.ts",
"src",
"src/typings/*.d.ts"
],
"exclude": [
"node_modules"
]
}