Fix IDE Companion Connection in Proxy Environments (#6308)

Co-authored-by: Jacob Richman <jacob314@gmail.com>
This commit is contained in:
Blackoutta
2025-08-20 08:32:08 +08:00
committed by GitHub
parent 6732665a08
commit d587c6f104
3 changed files with 92 additions and 3 deletions

21
.vscode/launch.json vendored
View File

@@ -67,6 +67,27 @@
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"skipFiles": ["<node_internals>/**"]
},
{
"name": "Debug Integration Test File",
"type": "node",
"request": "launch",
"runtimeExecutable": "npx",
"runtimeArgs": [
"vitest",
"run",
"--root",
"./integration-tests",
"--inspect-brk=9229",
"${file}"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"skipFiles": ["<node_internals>/**"],
"env": {
"GEMINI_SANDBOX": "false"
}
}
],
"inputs": [