added d.ts to clean
This commit is contained in:
parent
c66889889e
commit
cc19f88ad2
3 changed files with 4 additions and 3 deletions
|
|
@ -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"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -116,6 +116,7 @@ if ($all -or $fresh) {
|
|||
Remove-FilesByPattern ".eslintcache" "ESLint cache files"
|
||||
Remove-FilesByPattern ".stylelintcache" "Stylelint cache files"
|
||||
Remove-FilesByPattern ".prettiercache" "Prettier cache files"
|
||||
Remove-FilesByPattern "*.d.ts" "TypeScript build info files"
|
||||
|
||||
# Database files
|
||||
Remove-FilesByPattern "*.db" "database files"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue