launch.json 497 B

12345678910111213141516171819
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "node-terminal",
  6. "name": "开发环境",
  7. "request": "launch",
  8. "command": "npm run dev:custom wp-dev",
  9. "cwd": "${workspaceFolder}"
  10. },
  11. {
  12. "type": "node-terminal",
  13. "name": "SIT测试环境",
  14. "request": "launch",
  15. "command": "npm run dev:custom wp-sit",
  16. "cwd": "${workspaceFolder}"
  17. }
  18. ]
  19. }