launch.json 296 B

12345678910111213
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Run & debug my app on chrome",
  6. "type": "chrome",
  7. "request": "launch",
  8. "url": "http://localhost:4200",
  9. "webRoot": "${workspaceFolder}",
  10. "preLaunchTask": "start"
  11. }
  12. ]
  13. }