tasks.json 780 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "version": "0.1.0",
  3. "command": "gulp",
  4. "isShellCommand": true,
  5. "args": [
  6. "--no-color"
  7. ],
  8. "tasks": [
  9. // {
  10. // "taskName": "build",
  11. // "args": [],
  12. // "isBuildCommand": true,
  13. // "isWatching": false,
  14. // "problemMatcher": [
  15. // "$lessCompile",
  16. // "$tsc",
  17. // "$jshint"
  18. // ]
  19. // },
  20. //default task is build task
  21. {
  22. "taskName": "default",
  23. "args" :[],
  24. "isBuildCommand": true,
  25. "isWatching": false,
  26. "problemMatcher": [
  27. "$lessCompile",
  28. "$tsc",
  29. "$jshint"
  30. ]
  31. }
  32. ]
  33. }