Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

launch.json 464B

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. }