From 37ea21272a942237a3aa63628627cd2199fee1b5 Mon Sep 17 00:00:00 2001 From: Daelon Suzuka Date: Wed, 11 Oct 2023 14:50:10 -0400 Subject: [PATCH] Add additional launch profile (#503) --- .vscode/launch.json | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 0e537c5..1bc3c49 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,7 +4,8 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 { "version": "0.2.0", - "configurations": [{ + "configurations": [ + { "name": "Run Extension", "type": "extensionHost", "request": "launch", @@ -20,5 +21,22 @@ "VSCODE_DEBUG_MODE": true } }, + { + "name": "Run Extension with workspace file", + "type": "extensionHost", + "request": "launch", + "runtimeExecutable": "${execPath}", + "args": [ + "${workspaceFolder}/workspace.code-workspace", + "--extensionDevelopmentPath=${workspaceFolder}" + ], + "outFiles": [ + "${workspaceFolder}/out/**/*.js" + ], + "preLaunchTask": "npm: watch", + "env": { + "VSCODE_DEBUG_MODE": true + } + }, ] }