Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

debug: implement new prototype thin DA for delve #267

Closed
wants to merge 13 commits into from
15 changes: 15 additions & 0 deletions .vscode/launch.json
Expand Up @@ -34,6 +34,21 @@
],
"preLaunchTask": "npm"
},
{
"name": "Launch as server DlvDap",
"type": "node",
"protocol": "inspector",
"request": "launch",
"program": "${workspaceFolder}/out/src/debugAdapterDlvDap/goDlvDapDebugMain.js",
polinasok marked this conversation as resolved.
Show resolved Hide resolved
"args": [
"--server=4722"
],
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm"
},
{
"name": "Launch Extension Tests",
"type": "extensionHost",
Expand Down