blob: 195949bdfcbfc614409c6927edfc0e47627e6599 [file] [log] [blame]
Sean McCullough86b56862025-04-18 13:04:03 -07001{
2 "version": "2.0.0",
3 "tasks": [
4 {
5 "type": "npm",
6 "script": "watch",
7 "path": "loop/webui",
8 "group": "build",
9 "problemMatcher": ["$tsc-watch"],
10 "label": "webui: watch tsc",
11 "detail": "tsc --watch",
12 "isBackground": true
13 },
14 {
15 "type": "npm",
16 "script": "demo",
17 "path": "loop/webui",
18 "group": "build",
19 "label": "webui: watch demo",
20 "isBackground": true,
21 "dependsOn": ["webui: watch tsc"],
22 "problemMatcher": [
23 {
24 "pattern": [
25 {
26 "regexp": ".",
27 "file": 1,
28 "location": 2,
29 "message": 3
30 }
31 ],
32 "background": {
33 "activeOnStart": true,
34 "beginsPattern": "Web Dev Server started...",
35 "endsPattern": "Network:"
36 }
37 }
38 ]
39 }
40 ]
41}