tasks.json 778 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // See https://go.microsoft.com/fwlink/?LinkId=733558
  2. // for the documentation about the tasks.json format
  3. {
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "type": "npm",
  8. "script": "watch",
  9. "problemMatcher": [
  10. "$ts-webpack-watch",
  11. "$tslint-webpack-watch"
  12. ],
  13. "isBackground": true,
  14. "presentation": {
  15. "reveal": "never",
  16. "group": "watchers"
  17. },
  18. "group": {
  19. "kind": "build",
  20. "isDefault": true
  21. }
  22. },
  23. {
  24. "type": "npm",
  25. "script": "watch-tests",
  26. "problemMatcher": "$tsc-watch",
  27. "isBackground": true,
  28. "presentation": {
  29. "reveal": "never",
  30. "group": "watchers"
  31. },
  32. "group": "build"
  33. },
  34. {
  35. "label": "tasks: watch-tests",
  36. "dependsOn": [
  37. "npm: watch",
  38. "npm: watch-tests"
  39. ],
  40. "problemMatcher": []
  41. }
  42. ]
  43. }