Files
orca/mobile/tsconfig.json
T
67a95c7400 fix: pr-bug-scan validated finding from #5304 (#5342)
* fix: address pr-bug-scan validated finding from #5304

Added stream.sent=false reset in handleAuthRejection retry branch so e2ee_authenticated replay re-sends active terminal.subscribe after auth-retry reconnect.

* test: verify terminal resume after auth retry reconnect

* Fix remote runtime client timeout refresh on mobile

Avoid using Node-specific Timeout.refresh directly on platforms like
mobile where setTimeout returns a standard number/timer ID. Instead,
fallback to clearTimeout and setTimeout if .refresh is unavailable. Also
add missing path mappings to the mobile tsconfig.

---------

Co-authored-by: orca-bug-scan-bot <orca-bug-scan-bot@stably.ai>
Co-authored-by: Jinjing <6427696+AmethystLiang@users.noreply.github.com>
2026-06-16 17:21:13 -07:00

16 lines
366 B
JSON

{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"baseUrl": ".",
"strict": true,
"paths": {
"@/*": ["./src/*"],
"tweetnacl": ["./node_modules/tweetnacl"],
"ws": ["./node_modules/@types/ws"],
"zod": ["./node_modules/zod"]
}
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["**/*.test.ts", "**/*.test.tsx"]
}