| 1234567891011121314151617181920 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "Kill Running Process and Run Code",
- "type": "shell",
- "command": "pkill -f 'node ${file}' || true && node ${file}",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "presentation": {
- "reveal": "always",
- "panel": "new",
- "clear": true
- },
- "problemMatcher": []
- }
- ]
- }
|