tasks.json 913 B

1234567891011121314151617181920212223242526272829303132
  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 && /Users/chengjie/.nvm/versions/node/v24.18.0/bin/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. "label": "检查近期服务端 Bug",
  21. "type": "shell",
  22. "command": "${workspaceFolder}/local-error-monitor/run.sh",
  23. "presentation": {
  24. "reveal": "always",
  25. "panel": "dedicated",
  26. "clear": true
  27. },
  28. "problemMatcher": []
  29. }
  30. ]
  31. }