launch.json 524 B

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