tasks.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. "command": "gulp",
  6. "args": [],
  7. "type": "shell",
  8. "options": {
  9. "cwd": "${workspaceRoot}/Tools/Gulp"
  10. },
  11. "presentation": {
  12. "echo": true,
  13. "reveal": "always",
  14. "focus": false,
  15. "panel": "shared"
  16. },
  17. "tasks": [
  18. {
  19. "label": "run",
  20. "group": {
  21. "kind": "build",
  22. "isDefault": true
  23. },
  24. "isBackground": true,
  25. "problemMatcher": {
  26. "owner": "typescript",
  27. "fileLocation": "relative",
  28. "pattern": {
  29. "regexp": "^([^\\s].*)\\((\\d+|\\,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(TS\\d+)\\s*:\\s*(.*)$",
  30. "file": 1,
  31. "location": 2,
  32. "severity": 3,
  33. "code": 4,
  34. "message": 5
  35. },
  36. "background": {
  37. "activeOnStart": true,
  38. "beginsPattern": "Starting \\'watch\\'",
  39. "endsPattern": "Finished \\'run\\'"
  40. }
  41. }
  42. },
  43. {
  44. "taskName": "typescript-all",
  45. "isBuildCommand": true,
  46. "problemMatcher": [
  47. "$tsc"
  48. ]
  49. }
  50. ]
  51. }