tasks.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "watch",
  6. "dependsOn": ["npm: watch:tsc", "npm: watch:esbuild"],
  7. "presentation": {
  8. "reveal": "never"
  9. },
  10. "group": {
  11. "kind": "build",
  12. "isDefault": true
  13. }
  14. },
  15. {
  16. "type": "npm",
  17. "script": "watch:esbuild",
  18. "group": "build",
  19. "isBackground": true,
  20. "label": "npm: watch:esbuild",
  21. "presentation": {
  22. "group": "watch",
  23. "reveal": "never"
  24. }
  25. },
  26. {
  27. "type": "npm",
  28. "script": "watch:tsc",
  29. "group": "build",
  30. "problemMatcher": "$tsc-watch",
  31. "isBackground": true,
  32. "label": "npm: watch:tsc",
  33. "presentation": {
  34. "group": "watch",
  35. "reveal": "never"
  36. }
  37. },
  38. {
  39. "type": "npm",
  40. "script": "watch-tests",
  41. "problemMatcher": "$tsc-watch",
  42. "isBackground": true,
  43. "presentation": {
  44. "reveal": "never",
  45. "group": "watchers"
  46. },
  47. "group": "build"
  48. },
  49. {
  50. "label": "tasks: watch-tests",
  51. "dependsOn": ["npm: watch", "npm: watch-tests"],
  52. "problemMatcher": []
  53. }
  54. ]
  55. }