launch.json 470 B

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