I am trying to configure redis-cache manager but it doesnt compile.
import type { RedisClientOptions } from 'redis';
import redisStore from 'cache-manager-redis-yet';
CacheModule.register<RedisClientOptions>({
store: redisStore.redisStore,
url: 'redis://localhost:6379/0',
}),
this gives " Cannot read properties of undefined (reading 'redisStore')"
to use only "redisStore" as written in official docs is not compiling.