launch.json 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. {
  2. "version": "2.0.0",
  3. "configurations": [
  4. {
  5. "name": "Node Material Editor (Chrome)",
  6. "type": "chrome",
  7. "request": "launch",
  8. "url": "http://localhost:1338/nodeEditor/public/index-local.html",
  9. "webRoot": "${workspaceRoot}/",
  10. "sourceMaps": true,
  11. "preLaunchTask": "run",
  12. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  13. "runtimeArgs": [
  14. "--enable-unsafe-es3-apis"
  15. ]
  16. },
  17. {
  18. "name": "Launch Viewer (Chrome)",
  19. "type": "chrome",
  20. "request": "launch",
  21. "url": "http://localhost:9000/basicExample.html",
  22. "webRoot": "${workspaceRoot}/Viewer/",
  23. "sourceMaps": true,
  24. "preLaunchTask": "serve-viewer",
  25. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  26. "runtimeArgs": [
  27. "--enable-unsafe-es3-apis"
  28. ]
  29. },
  30. {
  31. "name": "Launch sandbox (Chrome)",
  32. "type": "chrome",
  33. "request": "launch",
  34. "url": "http://localhost:1338/sandbox/index-local.html",
  35. "webRoot": "${workspaceRoot}/",
  36. "sourceMaps": true,
  37. "preLaunchTask": "run",
  38. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  39. "runtimeArgs": [
  40. "--enable-unsafe-es3-apis"
  41. ]
  42. },
  43. {
  44. "name": "Launch playground (Chrome)",
  45. "type": "chrome",
  46. "request": "launch",
  47. "url": "http://localhost:1338/Playground/index-local.html",
  48. "webRoot": "${workspaceRoot}/",
  49. "sourceMaps": true,
  50. "preLaunchTask": "run",
  51. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  52. "runtimeArgs": [
  53. "--enable-unsafe-es3-apis"
  54. ]
  55. },
  56. {
  57. "name": "Launch playground (Chrome+WebGL 1.0 forced)",
  58. "type": "chrome",
  59. "request": "launch",
  60. "url": "http://localhost:1338/Playground/index-local.html",
  61. "webRoot": "${workspaceRoot}/",
  62. "sourceMaps": true,
  63. "preLaunchTask": "run",
  64. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  65. "runtimeArgs": [
  66. "--disable-es3-apis"
  67. ]
  68. },
  69. {
  70. "name": "Launch Materials Library (Chrome)",
  71. "type": "chrome",
  72. "request": "launch",
  73. "url": "http://localhost:1338/materialsLibrary/index.html",
  74. "webRoot": "${workspaceRoot}/",
  75. "sourceMaps": true,
  76. "preLaunchTask": "run",
  77. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  78. "runtimeArgs": [
  79. "--enable-unsafe-es3-apis"
  80. ]
  81. },
  82. {
  83. "name": "Launch Post Processes Library (Chrome)",
  84. "type": "chrome",
  85. "request": "launch",
  86. "url": "http://localhost:1338/postProcessLibrary/index.html",
  87. "webRoot": "${workspaceRoot}/",
  88. "sourceMaps": true,
  89. "preLaunchTask": "run",
  90. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  91. "runtimeArgs": [
  92. "--enable-unsafe-es3-apis"
  93. ]
  94. },
  95. {
  96. "name": "Launch Procedural Textures Library (Chrome)",
  97. "type": "chrome",
  98. "request": "launch",
  99. "url": "http://localhost:1338/proceduralTexturesLibrary/index.html",
  100. "webRoot": "${workspaceRoot}/",
  101. "sourceMaps": true,
  102. "preLaunchTask": "run",
  103. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  104. "runtimeArgs": [
  105. "--enable-unsafe-es3-apis"
  106. ]
  107. },
  108. {
  109. "name": "Launch Inspector (Chrome)",
  110. "type": "chrome",
  111. "request": "launch",
  112. "url": "http://localhost:1338/inspector/index.html",
  113. "webRoot": "${workspaceRoot}/",
  114. "sourceMaps": true,
  115. "preLaunchTask": "run",
  116. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  117. "runtimeArgs": [
  118. "--enable-unsafe-es3-apis"
  119. ]
  120. },
  121. {
  122. "name": "Launch Local Dev (Chrome)",
  123. "type": "chrome",
  124. "request": "launch",
  125. "url": "http://localhost:1338/localDev/index.html",
  126. "webRoot": "${workspaceRoot}/",
  127. "sourceMaps": true,
  128. "preLaunchTask": "run",
  129. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  130. "runtimeArgs": [
  131. "--enable-unsafe-es3-apis"
  132. ]
  133. },
  134. {
  135. "name": "Launch Local Dev (Experimental Firefox)",
  136. "type": "firefox",
  137. "request": "launch",
  138. "reAttach": true,
  139. "url": "http://localhost:1338/localDev/index.html",
  140. "pathMappings": [
  141. {
  142. "url": "http://localhost:1338",
  143. "path": "${workspaceFolder}"
  144. }
  145. ],
  146. "preLaunchTask": "run"
  147. },
  148. {
  149. "name": "Launch Build Validation (Chrome)",
  150. "type": "chrome",
  151. "request": "launch",
  152. "url": "http://localhost:1338/tests/validation/index.html",
  153. "webRoot": "${workspaceRoot}/",
  154. "sourceMaps": true,
  155. "preLaunchTask": "run",
  156. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  157. "runtimeArgs": [
  158. "--enable-unsafe-es3-apis"
  159. ]
  160. },
  161. {
  162. "name": "Launch Build Validation (Firefox)",
  163. "type": "firefox",
  164. "request": "launch",
  165. "reAttach": true,
  166. "webRoot": "${workspaceRoot}/",
  167. "url": "http://localhost:1338/tests/validation/index.html"
  168. },
  169. {
  170. "name": "Launch memory checks (Chrome)",
  171. "type": "chrome",
  172. "request": "launch",
  173. "url": "http://localhost:1338/tests/memoryChecks/index.html",
  174. "webRoot": "${workspaceRoot}/",
  175. "sourceMaps": true,
  176. "preLaunchTask": "run",
  177. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  178. "runtimeArgs": [
  179. "--enable-unsafe-es3-apis"
  180. ]
  181. },
  182. ]
  183. }