Skip to content

Commit

Permalink
Add develop launch target for extensionHost
Browse files Browse the repository at this point in the history
This commit adds a new launch target to the launch.json file that allows you to run the extension in a development environment.

This is useful for debugging and testing the extension without using a temporary profile.
  • Loading branch information
jpogran committed Jul 24, 2024
1 parent b2315be commit 3b89695
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "${defaultBuildTask}"
},
{
"name": "Develop Extension",
"type": "extensionHost",
"request": "launch",
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "${defaultBuildTask}"
},
{
"name": "Run Web Extension ",
"type": "pwa-extensionHost",
Expand Down

0 comments on commit 3b89695

Please sign in to comment.