launch.json 987 B

1234567891011121314151617181920212223242526272829
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "type": "vscode-edge-devtools.debug",
  9. "request": "attach",
  10. "name": "Attach to Microsoft Edge and open the Edge DevTools",
  11. "url": "http://localhost:3000",
  12. "webRoot": "${workspaceFolder}"
  13. },
  14. {
  15. "type": "vscode-edge-devtools.debug",
  16. "request": "launch",
  17. "name": "Launch Microsoft Edge and open the Edge DevTools",
  18. "url": "http://localhost:3000",
  19. "webRoot": "${workspaceFolder}"
  20. },
  21. {
  22. "type": "chrome",
  23. "request": "launch",
  24. "name": "Launch Chrome against localhost",
  25. "url": "http://localhost:3000",
  26. "webRoot": "${workspaceFolder}"
  27. }
  28. ]
  29. }