8245f4ddfc
- Use GlobalFilters created by nestjs-prisma - Rename user/users routes
32 lines
782 B
JSON
32 lines
782 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2021",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./src",
|
|
"typeRoots": ["./src/types/*.d.ts"],
|
|
"paths": {
|
|
"@/*": ["*"],
|
|
"@Modules/*": ["modules/*"],
|
|
"@Interfaces/*": ["interfaces/*"],
|
|
"@Config/*": ["config/*"],
|
|
"@Validations/*": ["validations/*"]
|
|
},
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": false,
|
|
"noImplicitAny": false,
|
|
"strictBindCallApply": false,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true
|
|
}
|
|
}
|