microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.0.10-rc

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.vscode/launch.shared.json

31lines · modecode

1{
2 // Use IntelliSense to learn about possible attributes.
3 // Hover to view descriptions of existing attributes.
4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 "version": "0.2.0",
6 "configurations": [
7 {
8 "name": "Run VS Code extension",
9 "type": "extensionHost",
10 "debugWebWorkerHost": true,
11 "request": "launch",
12 "runtimeExecutable": "${execPath}",
13 "args": [
14 "--extensionDevelopmentPath=${workspaceFolder}/vscode",
15 "${workspaceFolder}/samples/"
16 ]
17 },
18 {
19 // https://code.visualstudio.com/api/extension-guides/web-extensions#test-your-web-extension-in-vs-code-running-on-desktop
20 "name": "Run VS Code Web Extension",
21 "type": "pwa-extensionHost",
22 "debugWebWorkerHost": true,
23 "request": "launch",
24 "args": [
25 "--extensionDevelopmentPath=${workspaceFolder}/vscode",
26 "--extensionDevelopmentKind=web",
27 "${workspaceFolder}/samples/"
28 ]
29 }
30 ]
31}
32