launch.json 594 B

1234567891011121314151617181920
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "type": "chrome",
  9. "request": "attach",
  10. "name": "Attach to Chrome",
  11. "port": 9222,
  12. "webRoot": "${workspaceRoot}/src",
  13. "url": "http://localhost:1888/#/",
  14. "sourceMaps": true,
  15. "sourceMapPathOverrides": {
  16. "webpack:///src/*": "${webRoot}/*"
  17. }
  18. }
  19. ]
  20. }