summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorOlcan <[email protected]>2025-04-21 19:04:00 -0700
committerGitHub <[email protected]>2025-04-21 19:04:00 -0700
commitf9c4014e286194b8ba2e97dbb680cf92c0597c60 (patch)
treeb3e97851d3d1f297756ad1b6d7518b5e0c785509 /.vscode
parent1a167b2ea5ef10d0bea66e227bd2148d4934f5b5 (diff)
fix source mapping when debugging in sandbox (#107)
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 329943a4..d172567f 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -9,7 +9,10 @@
"port": 9229,
"request": "attach",
"skipFiles": ["<node_internals>/**"],
- "type": "node"
+ "type": "node",
+ // fix source mapping when debugging in sandbox
+ "remoteRoot": "/usr/local/share/npm-global/lib/node_modules/@gemini-code",
+ "localRoot": "${workspaceFolder}/packages"
},
{
"type": "node",