launch.json 672 B

1234567891011121314151617181920212223242526
  1. {
  2. // 使用 IntelliSense 了解相关属性。
  3. // 悬停以查看现有属性的描述。
  4. // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "调试团购",
  9. "type": "node",
  10. "request": "launch",
  11. "cwd": "${workspaceRoot}",
  12. "runtimeExecutable": "npm",
  13. "windows": {
  14. "runtimeExecutable": "npm.cmd"
  15. },
  16. "runtimeArgs": ["run", "dev"],
  17. "env": {
  18. "NODE_ENV": "local"
  19. },
  20. "console": "integratedTerminal",
  21. "protocol": "auto",
  22. "restart": true,
  23. "autoAttachChildProcesses": true
  24. }
  25. ]
  26. }