Skip to content

Commit

Permalink
Merge pull request #18 from Code-Inspect/16-add-run-configuration-to-…
Browse files Browse the repository at this point in the history
…run-the-extension-without-other-extensions

 Add run configuration to run the extension without other extensions
  • Loading branch information
EagleoutIce authored Mar 5, 2024
2 parents 375924d + 41f15a9 commit c0cdc59
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,28 @@
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
"preLaunchTask": "npm: watch"
},
{
"name": "Run Only This Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--disable-extensions"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: watch"
}
]
}

0 comments on commit c0cdc59

Please sign in to comment.