launch.json 220 B

123456789101112
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Launch debug",
  6. "request": "launch",
  7. "type": "chrome",
  8. "url": "http://localhost",
  9. "webRoot": "${workspaceFolder}/src"
  10. }
  11. ]
  12. }