Skip to content

Commit

Permalink
dev: add option to debug with all extensions enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
senyai committed Apr 22, 2024
1 parent 0ff3b3e commit bd27097
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"name": "Fossil Extension (--disable-extensions)",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
Expand All @@ -18,7 +18,21 @@
"preLaunchTask": "npm"
},
{
"name": "Launch Tests",
"name": "Fossil Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}",
],
"sourceMaps": true,
"outFiles": [
"${workspaceRoot}/out/*.js"
],
"preLaunchTask": "npm"
},
{
"name": "Fossil Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
Expand Down

0 comments on commit bd27097

Please sign in to comment.