feat: Centralize browser instance creation to eliminate duplication in Desktop and Mobile flows

fix: Update error message for HTTP 400 checks to English
refactor: Improve logging for network idle wait timeout in Workers
fix: Initialize lastError in Axios client to prevent undefined errors
chore: Update tsconfig to include path mappings for better module resolution
This commit is contained in:
2025-11-09 17:56:46 +01:00
parent 56aacd3667
commit 9fb5911fa2
10 changed files with 101 additions and 38 deletions

View File

@@ -28,6 +28,15 @@
/* Module Resolution Options */
"moduleResolution": "node",
"baseUrl": "./src",
"paths": {
"@constants": ["constants"],
"@interfaces/*": ["interface/*"],
"@utils/*": ["util/*"],
"@browser/*": ["browser/*"],
"@functions/*": ["functions/*"],
"@flows/*": ["flows/*"]
},
"types": ["node"],
"esModuleInterop": true,