From ba6e385030c1bb1fb19c6c8e0661a4882eb42515 Mon Sep 17 00:00:00 2001 From: Mase Graye Date: Thu, 26 Oct 2023 17:46:40 -0500 Subject: [PATCH] Set CWD when running ui build prelaunch task (#588) Fixes Server + Extension vscode launch configuration. Then previous "npm" type task respected the cwd setting from launch.json. However, the new "shell" type task seems to require it be explicitly set in the task. --- .vscode/tasks.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 7210d7d62c..5673d154c2 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -60,6 +60,9 @@ "presentation": { "revealProblems": "onProblem", "clear": true + }, + "options": { + "cwd": "${workspaceFolder}/extensions/vscode" } }, //