From 26dc157ff7dca9e64690ae6fecf4ad8574c81043 Mon Sep 17 00:00:00 2001 From: KJ7LNW <93454819+KJ7LNW@users.noreply.github.com> Date: Thu, 8 May 2025 11:59:36 -0700 Subject: [PATCH] build: prevent $esbuild-watch error (#1711) Co-authored-by: Eric Wheeler --- .vscode/tasks.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 47112d7228..850dcc0798 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -41,7 +41,17 @@ "type": "npm", "script": "watch:esbuild", "group": "build", - "problemMatcher": "$esbuild-watch", + "problemMatcher": { + "owner": "esbuild", + "pattern": { + "regexp": "^$" + }, + "background": { + "activeOnStart": true, + "beginsPattern": "\\[watch\\] build started", + "endsPattern": "\\[watch\\] build finished" + } + }, "isBackground": true, "presentation": { "group": "watch",