Skip to content

Commit

Permalink
feat: add custom folder path to debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
vinay-osseed committed Dec 16, 2024
1 parent ba84074 commit 9ae355c
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,22 @@
// 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.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
]
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/test/suite/index"
"--new-window",
"--folder-uri=${input:workspaceFolder}"
]
}
],
"inputs": [
{
"id": "workspaceFolder",
"type": "promptString",
"description": "Enter the folder path to open in a new window"
}
]
}

0 comments on commit 9ae355c

Please sign in to comment.