added d.ts to clean

This commit is contained in:
Bojan Kucera 2025-06-09 19:16:43 -04:00
parent c66889889e
commit cc19f88ad2
3 changed files with 4 additions and 3 deletions

View file

@ -4,8 +4,8 @@
"scripts": {
"ng": "ng",
"start": "ng serve",
"dev": "ng serve --port 5173 --host 0.0.0.0",
"build": "ng build",
"devvvv": "ng serve --port 5173 --host 0.0.0.0",
"buildd": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},

View file

@ -38,7 +38,7 @@ export class QueueService {
host: process.env.DRAGONFLY_HOST || 'localhost',
port: parseInt(process.env.DRAGONFLY_PORT || '6379'),
// Add these Redis-specific options to fix the undeclared key issue
maxRetriesPerRequest: 3,
maxRetriesPerRequest: null,
retryDelayOnFailover: 100,
enableReadyCheck: false,
lazyConnect: true,