Update ESLint rules, enhance environment schema with new metrics and health port, and refactor Redis import. Change TypeScript definitions path in package.json.

This commit is contained in:
smueller
2026-07-22 11:11:39 +02:00
parent c2271485a5
commit bc97d1d74c
15 changed files with 801 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
import IORedis from 'ioredis';
import { Redis } from 'ioredis';
import { env } from './env.js';
export const redis = new IORedis(env.REDIS_URL, {
export const redis = new Redis(env.REDIS_URL, {
maxRetriesPerRequest: null
});