launch.json 660 B

123456789101112131415161718192021222324252627
  1. {
  2. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  3. "version": "0.2.0",
  4. "configurations": [
  5. {
  6. "type": "chrome",
  7. "request": "launch",
  8. "name": "Launch Chrome against localhost",
  9. "url": "http://localhost:4200/",
  10. "webRoot": "${workspaceFolder}"
  11. },
  12. {
  13. "name": "ng serve",
  14. "type": "chrome",
  15. "request": "launch",
  16. "preLaunchTask": "npm: start",
  17. "url": "http://localhost:4200/"
  18. },
  19. {
  20. "name": "ng test",
  21. "type": "chrome",
  22. "request": "launch",
  23. "preLaunchTask": "npm: test",
  24. "url": "http://localhost:9876/debug.html"
  25. }
  26. ]
  27. }