We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f308673 commit 61fed9dCopy full SHA for 61fed9d
2 files changed
src/health/health.controller.ts
@@ -6,14 +6,12 @@ import {
6
HealthIndicatorResult,
7
TypeOrmHealthIndicator,
8
} from '@nestjs/terminus';
9
-import { RedisService } from 'nestjs-redis';
10
11
@Controller('health')
12
export class HealthController {
13
constructor(
14
private health: HealthCheckService,
15
private db: TypeOrmHealthIndicator,
16
- private redis: RedisService,
17
) {}
18
19
@Get()
tsconfig.json
@@ -10,6 +10,12 @@
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
+ "noImplicitAny": true,
+ "noImplicitReturns": true,
+ "noImplicitThis": true,
+ "alwaysStrict": true,
+ "noUnusedLocals": true,
+ "strictNullChecks": true,
"strictPropertyInitialization": false,
20
"allowJs": true,
21
}
0 commit comments