launch.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "version": "0.1.0",
  3. "configurations": [
  4. {
  5. "name": "Launch playground (Chrome)",
  6. "type": "chrome",
  7. "request": "launch",
  8. "url": "http://localhost:1338/Playground/index-local.html",
  9. "webRoot": "${workspaceRoot}/",
  10. "sourceMaps": true,
  11. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug"
  12. },
  13. {
  14. "name": "Launch Materials Library (Chrome)",
  15. "type": "chrome",
  16. "request": "launch",
  17. "url": "http://localhost:1338/materialsLibrary/index.html",
  18. "webRoot": "${workspaceRoot}/",
  19. "sourceMaps": true,
  20. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug"
  21. },
  22. {
  23. "name": "Launch Post Processes Library (Chrome)",
  24. "type": "chrome",
  25. "request": "launch",
  26. "url": "http://localhost:1338/postProcessLibrary/index.html",
  27. "webRoot": "${workspaceRoot}/",
  28. "sourceMaps": true,
  29. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug"
  30. },
  31. {
  32. "name": "Launch Procedural Textures Library (Chrome)",
  33. "type": "chrome",
  34. "request": "launch",
  35. "url": "http://localhost:1338/proceduralTexturesLibrary/index.html",
  36. "webRoot": "${workspaceRoot}/",
  37. "sourceMaps": true,
  38. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug"
  39. },
  40. {
  41. "name": "Launch Inspector (Chrome)",
  42. "type": "chrome",
  43. "request": "launch",
  44. "url": "http://localhost:1338/inspector/index.html",
  45. "webRoot": "${workspaceRoot}/",
  46. "sourceMaps": true,
  47. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug"
  48. },
  49. {
  50. "name": "Launch Local Dev (Chrome)",
  51. "type": "chrome",
  52. "request": "launch",
  53. "url": "http://localhost:1338/localDev/index.html",
  54. "webRoot": "${workspaceRoot}/",
  55. "sourceMaps": true,
  56. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug"
  57. }
  58. ]
  59. }