| 1 | { |
| 2 | "version": "2.0.0", |
| 3 | "tasks": [ |
| 4 | { |
| 5 | "label": "npm: watch", |
| 6 | "type": "npm", |
| 7 | "script": "watch", |
| 8 | "isBackground": true, |
| 9 | "group": { |
| 10 | "kind": "build", |
| 11 | "isDefault": true |
| 12 | }, |
| 13 | "presentation": { |
| 14 | "reveal": "never", |
| 15 | "group": "watch" |
| 16 | }, |
| 17 | "problemMatcher": { |
| 18 | "owner": "esbuild", |
| 19 | "pattern": { |
| 20 | "regexp": "^\\s*(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$", |
| 21 | "file": 1, |
| 22 | "line": 2, |
| 23 | "column": 3, |
| 24 | "severity": 4, |
| 25 | "message": 5 |
| 26 | }, |
| 27 | "background": { |
| 28 | "activeOnStart": true, |
| 29 | "beginsPattern": "\\[esbuild\\] watching for changes", |
| 30 | "endsPattern": "\\[esbuild\\] (build complete|watching for changes)" |
| 31 | } |
| 32 | } |
| 33 | } |
| 34 | ] |
| 35 | } |