tasks.json 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. "--max-old-space-size=8192"
  8. ],
  9. "type": "shell",
  10. "options": {
  11. "cwd": "${workspaceRoot}/Tools/Gulp"
  12. },
  13. "presentation": {
  14. "echo": true,
  15. "reveal": "always",
  16. "focus": false,
  17. "panel": "shared"
  18. },
  19. "tasks": [
  20. {
  21. "label": "run",
  22. "args": [
  23. "run"
  24. ],
  25. "group": {
  26. "kind": "build",
  27. "isDefault": true
  28. },
  29. "isBackground": true,
  30. "problemMatcher": {
  31. "owner": "typescript",
  32. "fileLocation": "relative",
  33. "pattern": {
  34. "regexp": "^([^\\s].*)\\((\\d+|\\,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(TS\\d+)\\s*:\\s*(.*)$",
  35. "file": 1,
  36. "location": 2,
  37. "severity": 3,
  38. "code": 4,
  39. "message": 5
  40. },
  41. "background": {
  42. "activeOnStart": true,
  43. "beginsPattern": "Starting \\'watchCore\\'",
  44. "endsPattern": "changes"
  45. }
  46. }
  47. },
  48. {
  49. "label": "serve-viewer",
  50. "type": "npm",
  51. "script": "start:server",
  52. "path": "Viewer/",
  53. "problemMatcher": [
  54. {
  55. "owner": "webpack-dev-server",
  56. "pattern": {
  57. "regexp": "^([^\\s].*)\\((\\d+|\\,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(TS\\d+)\\s*:\\s*(.*)$",
  58. "file": 1,
  59. "location": 2,
  60. "severity": 3,
  61. "code": 4,
  62. "message": 5
  63. },
  64. "background": {
  65. "activeOnStart": true,
  66. "beginsPattern": "Project is running at",
  67. "endsPattern": "Compiled successfully."
  68. }
  69. }
  70. ],
  71. "isBackground": true
  72. },
  73. {
  74. "label": "start-public-ssl",
  75. "type": "npm",
  76. "script": "start-public-ssl",
  77. "path": "Tools/Gulp/",
  78. "isBackground": true,
  79. "problemMatcher": {
  80. "owner": "typescript",
  81. "fileLocation": "relative",
  82. "pattern": {
  83. "regexp": "^([^\\s].*)\\((\\d+|\\,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(TS\\d+)\\s*:\\s*(.*)$",
  84. "file": 1,
  85. "location": 2,
  86. "severity": 3,
  87. "code": 4,
  88. "message": 5
  89. },
  90. "background": {
  91. "activeOnStart": true,
  92. "beginsPattern": "Starting \\'watchCore\\'",
  93. "endsPattern": "Watching for file changes"
  94. }
  95. }
  96. }
  97. ]
  98. }