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 GitHub
parent 7cea2e8bc4
commit 26dc157ff7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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