launch.json 252 B

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