launch.json 282 B

123456789101112
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "node-terminal",
  6. "name": "运行脚本: start:debug",
  7. "request": "launch",
  8. "command": "npm run start:debug",
  9. "cwd": "${workspaceFolder}"
  10. }
  11. ]
  12. }