launch.json 255 B

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