Skip to content

Commit

Permalink
Update launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Pustur committed Jun 7, 2021
1 parent c9197f9 commit da4938d
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
// A launch configuration that launches the extension inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
}
]
"version": "0.2.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--disable-extensions"
]
}
]
}

0 comments on commit da4938d

Please sign in to comment.