launch.json 598 B

123456789101112131415161718192021
  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. }