diff options
| author | Olcan <[email protected]> | 2025-04-21 19:04:00 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-21 19:04:00 -0700 |
| commit | f9c4014e286194b8ba2e97dbb680cf92c0597c60 (patch) | |
| tree | b3e97851d3d1f297756ad1b6d7518b5e0c785509 | |
| parent | 1a167b2ea5ef10d0bea66e227bd2148d4934f5b5 (diff) | |
fix source mapping when debugging in sandbox (#107)
| -rw-r--r-- | .vscode/launch.json | 5 |
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", |
