Angular app for CAC desktop
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

launch.json 474 B

il y a 3 ans
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": "pwa-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. }