tasks.json 481 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "type": "npm",
  6. "script": "compile",
  7. "group": "build",
  8. "presentation": {
  9. "panel": "dedicated",
  10. "reveal": "never"
  11. },
  12. "problemMatcher": [
  13. "$tsc"
  14. ]
  15. },
  16. {
  17. "type": "npm",
  18. "script": "watch",
  19. "isBackground": true,
  20. "group": {
  21. "kind": "build",
  22. "isDefault": true
  23. },
  24. "presentation": {
  25. "panel": "dedicated",
  26. "reveal": "never"
  27. },
  28. "problemMatcher": [
  29. "$tsc-watch"
  30. ]
  31. }
  32. ]
  33. }