launch.json 319 B

123456789101112131415
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Chrome",
  6. "type": "chrome",
  7. "request": "launch",
  8. "url": "http://localhost:3000",
  9. "webRoot": "${workspaceFolder}/packages/demo/src",
  10. "sourceMapPathOverrides": {
  11. "webpack:///src/*": "${webRoot}/*"
  12. }
  13. }
  14. ]
  15. }