Skip to content

Commit c9ba8dd

Browse files
committed
Add VS Code launch configurations for Go and Node.js
1 parent 5fee1fd commit c9ba8dd

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": "Debug FastAPI Project backend: Python Debugger",
929
"type": "debugpy",

0 commit comments

Comments
 (0)