tasks.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. "label": "watch",
  8. "dependsOn": [
  9. "npm: build:webview",
  10. "npm: watch:tsc",
  11. "npm: watch:esbuild"
  12. ],
  13. "presentation": {
  14. "reveal": "never"
  15. },
  16. "group": {
  17. "kind": "build",
  18. "isDefault": true
  19. }
  20. },
  21. {
  22. "type": "npm",
  23. "script": "build:webview",
  24. "group": "build",
  25. "problemMatcher": [],
  26. "isBackground": true,
  27. "label": "npm: build:webview",
  28. "presentation": {
  29. "group": "watch",
  30. "reveal": "never"
  31. }
  32. },
  33. {
  34. "type": "npm",
  35. "script": "watch:esbuild",
  36. "group": "build",
  37. "problemMatcher": "$esbuild-watch",
  38. "isBackground": true,
  39. "label": "npm: watch:esbuild",
  40. "presentation": {
  41. "group": "watch",
  42. "reveal": "never"
  43. }
  44. },
  45. {
  46. "type": "npm",
  47. "script": "watch:tsc",
  48. "group": "build",
  49. "problemMatcher": "$tsc-watch",
  50. "isBackground": true,
  51. "label": "npm: watch:tsc",
  52. "presentation": {
  53. "group": "watch",
  54. "reveal": "never"
  55. }
  56. },
  57. {
  58. "type": "npm",
  59. "script": "watch-tests",
  60. "problemMatcher": "$tsc-watch",
  61. "isBackground": true,
  62. "presentation": {
  63. "reveal": "never",
  64. "group": "watchers"
  65. },
  66. "group": "build"
  67. },
  68. {
  69. "label": "tasks: watch-tests",
  70. "dependsOn": [
  71. "npm: watch",
  72. "npm: watch-tests"
  73. ],
  74. "problemMatcher": []
  75. }
  76. ]
  77. }