Skip to content

Commit 641d4b0

Browse files
authored
Adds Go and Node debug configs
Adds VS Code launch configurations to debug Go packages and a Node entry point alongside the existing C++ setup. Enables F5 debugging for Go (auto mode at workspace) and Node (skips Node internals), improving multi-language development workflow.
1 parent d55db7b commit 641d4b0

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.vscode/launch.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7+
8+
9+
{
10+
"name": "Launch Package",
11+
"type": "go",
12+
"request": "launch",
13+
"mode": "auto",
14+
"program": "${workspaceFolder}"
15+
},
16+
17+
18+
{
19+
"name": "Launch Program",
20+
"program": "${workspaceFolder}/app.js",
21+
"request": "launch",
22+
"skipFiles": [
23+
"<node_internals>/**"
24+
],
25+
"type": "node"
26+
},
727
{
828
"name": "(gdb) Launch",
929
"type": "cppdbg",

0 commit comments

Comments
 (0)