mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 16:02:32 +00:00
* 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>
16 lines
366 B
JSON
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"]
|
|
}
|