Files
BizOne-portal/backend/tsconfig.json

25 lines
491 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": false,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strict": true,
"moduleResolution": "node",
"types": [
"node"
]
},
"include": [
"src/**/*.ts"
]
}