| 1234567891011121314151617181920212223242526272829303132 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "Kill Running Process and Run Code",
- "type": "shell",
- "command": "pkill -f 'node ${file}' || true && /Users/chengjie/.nvm/versions/node/v24.18.0/bin/node ${file}",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "presentation": {
- "reveal": "always",
- "panel": "new",
- "clear": true
- },
- "problemMatcher": []
- },
- {
- "label": "检查近期服务端 Bug",
- "type": "shell",
- "command": "${workspaceFolder}/local-error-monitor/run.sh",
- "presentation": {
- "reveal": "always",
- "panel": "dedicated",
- "clear": true
- },
- "problemMatcher": []
- }
- ]
- }
|