launch.json 399 B

12345678910111213141516171819
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "edge",
  6. "request": "launch",
  7. "name": "localhost (Edge)",
  8. "url": "http://localhost:3000",
  9. "webRoot": "${workspaceFolder}"
  10. },
  11. {
  12. "type": "chrome",
  13. "request": "launch",
  14. "name": "localhost (Chrome)",
  15. "url": "http://localhost:3000",
  16. "webRoot": "${workspaceFolder}"
  17. }
  18. ]
  19. }