tasks.json 867 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "label": "Before Debug",
  8. "type": "shell",
  9. "command": "node .vscode/.debug.script.mjs",
  10. "isBackground": true,
  11. "problemMatcher": {
  12. "owner": "typescript",
  13. "fileLocation": "relative",
  14. "pattern": {
  15. // TODO: correct "regexp"
  16. "regexp": "^([a-zA-Z]\\:/?([\\w\\-]/?)+\\.\\w+):(\\d+):(\\d+): (ERROR|WARNING)\\: (.*)$",
  17. "file": 1,
  18. "line": 3,
  19. "column": 4,
  20. "code": 5,
  21. "message": 6
  22. },
  23. "background": {
  24. "activeOnStart": true,
  25. "beginsPattern": "^.*VITE v.* ready in \\d* ms.*$",
  26. "endsPattern": "^.*\\[startup\\] Electron App.*$"
  27. }
  28. }
  29. }
  30. ]
  31. }