launch.json 593 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Launch Wing Player",
  6. "type": "chrome",
  7. "request": "launch",
  8. "file": "index.html",
  9. "runtimeExecutable": "${execPath}",
  10. "useBuildInServer": true,
  11. "sourceMaps": true,
  12. "webRoot": "${workspaceRoot}",
  13. "preLaunchTask":"build",
  14. "port":5036
  15. },
  16. {
  17. "name": "Launch Chrome",
  18. "type": "chrome",
  19. "request": "launch",
  20. "file": "index.html",
  21. "useBuildInServer": true,
  22. "sourceMaps": true,
  23. "webRoot": "${workspaceRoot}",
  24. "preLaunchTask":"build",
  25. "userDataDir":"${tmpdir}",
  26. "port":5036
  27. }
  28. ]
  29. }