Nest InjectRedis incompatible with typescript 5.1.6
I have updated my typescript version from 4.9.5 to 5.1.6 in my NestJs project and @InjectRedis no longer works This is the code: @Injectable() export class MyService { constructor( @InjectRedis('REDIS') private readonly redisService: Redis, ) {} ... } The error…