Merge pull request #461 from viktomas/updated-launch

Update launch.json to be useful for extension debugging
This commit is contained in:
João Moreno 2020-06-29 16:17:19 +02:00 committed by GitHub
commit 820c01424e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

5
.vscode/launch.json vendored
View file

@ -8,13 +8,14 @@
"type": "node",
"request": "launch",
"name": "Launch Program",
// "cwd": "<absolute path to your extension>",
"program": "${workspaceFolder}/out/vsce",
"args": [
"--version"
// "ls", "package", "publish"
],
"sourceMaps": true,
"outputCapture": "std",
"preLaunchTask": "compile"
"outputCapture": "std"
}
]
}