You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "chrome",
  6. "request": "launch",
  7. "name": "Debug in Chrome",
  8. "url": "http://localhost:3000",
  9. "webRoot": "${workspaceRoot}",
  10. "runtimeArgs": [
  11. "--disable-web-security",
  12. "--ignore-certificate-errors"
  13. ],
  14. "sourceMaps": true,
  15. "sourceMapPathOverrides": {
  16. "webpack:///./dist/applications/*": "${workspaceRoot}/src/*"
  17. }
  18. },
  19. ]
  20. }