12345678910111213141516171819202122232425262728293031 |
- {
- // See https://go.microsoft.com/fwlink/?LinkId=733558
- // for the documentation about the tasks.json format
- "version": "2.0.0",
- "tasks": [
- {
- "label": "Before Debug",
- "type": "shell",
- "command": "node .vscode/.debug.script.mjs",
- "isBackground": true,
- "problemMatcher": {
- "owner": "typescript",
- "fileLocation": "relative",
- "pattern": {
- // TODO: correct "regexp"
- "regexp": "^([a-zA-Z]\\:/?([\\w\\-]/?)+\\.\\w+):(\\d+):(\\d+): (ERROR|WARNING)\\: (.*)$",
- "file": 1,
- "line": 3,
- "column": 4,
- "code": 5,
- "message": 6
- },
- "background": {
- "activeOnStart": true,
- "beginsPattern": "^.*VITE v.* ready in \\d* ms.*$",
- "endsPattern": "^.*\\[startup\\] Electron App.*$"
- }
- }
- }
- ]
- }
|