I am creating a multi-node Express/Socket.io server using Typescript and I am trying to import RedisClient from redis, but I can't get it to work because I get the error
Module '"redis"' has no exported member 'RedisClient'
It seems to be trying to retrieve it form
node_modules/redis/dist/index
But in reality it is here:
node_modules/@types/redis"
How can I get it to import from the right place?