build: prevent $esbuild-watch error (#1711)

Co-authored-by: Eric Wheeler <roo-code@z.ewheeler.org>
This commit is contained in:
KJ7LNW 2025-05-08 11:59:36 -07:00 committed by hannesrudolph
parent 0f0c557647
commit f0a87ac075

12
.vscode/tasks.json vendored
View file

@ -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",