nest_scaffold/tsconfig.json

29 lines
717 B
JSON
Raw Normal View History

2023-02-24 15:25:06 +07:00
{
"compilerOptions": {
"strict": true,
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2019",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"paths": {
"@src/*": ["src/*"],
"@mdoules/*": ["src/modules/*"],
"@libs/*": ["src/libs/*"],
"@tests/*": ["tests/*"]
}
}
}