12345678910111213141516171819 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "核心服务",
- "type": "node",
- "request": "launch",
- "cwd": "${workspaceRoot}",
- "runtimeExecutable": "npm",
- "windows": { "runtimeExecutable": "npm.cmd" },
- "runtimeArgs": ["run", "debug"],
- "console": "integratedTerminal",
- "protocol": "auto",
- "restart": true,
- "port": 9229,
- "autoAttachChildProcesses": true
- }
- ]
- }
|