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.

launch.json 648B

12345678910111213141516171819202122232425
  1. {
  2. "version": "0.1.0",
  3. "configurations": [
  4. {
  5. "type": "chrome",
  6. "request": "launch",
  7. "name": "Launch Chrome",
  8. "url": "https://localhost:8000",
  9. "webRoot": "${workspaceFolder}/client"
  10. },
  11. {
  12. "type": "node",
  13. "request": "launch",
  14. "name": "Launch Server",
  15. "program": "${workspaceFolder}/server/ws-server.js"
  16. },
  17. {
  18. "name": "Launch index.html",
  19. "type": "chrome",
  20. "request": "launch",
  21. "file": "${workspaceFolder}/client/index.html"
  22. },
  23. ]
  24. }