launch.json 538 B

12345678910111213141516171819202122
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "chrome",
  6. "request": "launch",
  7. "name": "Launch Chrome against localhost",
  8. "url": "http://localhost:4200",
  9. "sourceMaps": true,
  10. "webRoot": "${workspaceRoot}"
  11. },
  12. {
  13. "type": "chrome",
  14. "request": "attach",
  15. "name": "Attach to Chrome",
  16. "port": 9222,
  17. "sourceMaps": true,
  18. "webRoot": "${workspaceRoot}"
  19. }
  20. ]
  21. }