tasks.json 510 B

1234567891011121314151617181920
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "Kill Running Process and Run Code",
  6. "type": "shell",
  7. "command": "pkill -f 'node ${file}' || true && node ${file}",
  8. "group": {
  9. "kind": "build",
  10. "isDefault": true
  11. },
  12. "presentation": {
  13. "reveal": "always",
  14. "panel": "new",
  15. "clear": true
  16. },
  17. "problemMatcher": []
  18. }
  19. ]
  20. }