tasks.json 247 B

123456789101112131415
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "type": "npm",
  6. "script": "watch",
  7. "group": {
  8. "kind": "build",
  9. "isDefault": true
  10. },
  11. "isBackground": true,
  12. "problemMatcher": "$esbuild-watch"
  13. }
  14. ]
  15. }