tasks.json 1.4 KB

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