tasks.json 706 B

1234567891011121314151617181920212223242526272829
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "0.1.0",
  5. "command": "gulp",
  6. "isShellCommand": true,
  7. "args": [],
  8. "showOutput": "always",
  9. "options": {
  10. "cwd": "${workspaceRoot}/Tools/Gulp"
  11. },
  12. "tasks": [
  13. {
  14. "taskName": "run",
  15. // Hijack Test Command for easy shortcut
  16. "isTestCommand": true,
  17. "problemMatcher": [
  18. "$tsc"
  19. ]
  20. },
  21. {
  22. "taskName": "typescript-all",
  23. "isBuildCommand": true,
  24. "problemMatcher": [
  25. "$tsc"
  26. ]
  27. }
  28. ]
  29. }