launch.json 876 B

1234567891011121314151617181920212223242526272829
  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. "envFile": "${workspaceFolder}/.env.dev"
  11. },
  12. {
  13. "type": "node-terminal",
  14. "name": "[local]start:debug",
  15. "request": "launch",
  16. "command": "npm run start:debug",
  17. "cwd": "${workspaceFolder}",
  18. "envFile": "${workspaceFolder}/.env.local"
  19. },
  20. {
  21. "type": "node-terminal",
  22. "name": "[local1]start:debug",
  23. "request": "launch",
  24. "command": "npm run start:debug",
  25. "cwd": "${workspaceFolder}",
  26. "envFile": "${workspaceFolder}/.env.local.1"
  27. }
  28. ]
  29. }