| Sean McCullough | 86b5686 | 2025-04-18 13:04:03 -0700 | [diff] [blame] | 1 | { |
| 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 | } |