File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,12 @@ import {
6
6
HealthIndicatorResult ,
7
7
TypeOrmHealthIndicator ,
8
8
} from '@nestjs/terminus' ;
9
- import { RedisService } from 'nestjs-redis' ;
10
9
11
10
@Controller ( 'health' )
12
11
export class HealthController {
13
12
constructor (
14
13
private health : HealthCheckService ,
15
14
private db : TypeOrmHealthIndicator ,
16
- private redis : RedisService ,
17
15
) { }
18
16
19
17
@Get ( )
Original file line number Diff line number Diff line change 10
10
"outDir" : " ./dist" ,
11
11
"baseUrl" : " ./" ,
12
12
"incremental" : true ,
13
+ "noImplicitAny" : true ,
14
+ "noImplicitReturns" : true ,
15
+ "noImplicitThis" : true ,
16
+ "alwaysStrict" : true ,
17
+ "noUnusedLocals" : true ,
18
+ "strictNullChecks" : true ,
13
19
"strictPropertyInitialization" : false ,
14
20
"allowJs" : true ,
15
21
}
You can’t perform that action at this time.
0 commit comments