tasks.json 388 B

123456789101112131415161718
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "type": "npm",
  6. "script": "watch",
  7. "problemMatcher": "$tsc-watch",
  8. "isBackground": true,
  9. "presentation": {
  10. "reveal": "never"
  11. },
  12. "group": {
  13. "kind": "build",
  14. "isDefault": true
  15. }
  16. }
  17. ]
  18. }