launch.json 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. {
  2. "version": "2.0.0",
  3. "configurations": [
  4. {
  5. "name": "Launch 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 - Worker mode (Chrome)",
  136. "type": "chrome",
  137. "request": "launch",
  138. "url": "http://localhost:1338/localDev/index-worker.html",
  139. "webRoot": "${workspaceRoot}/",
  140. "sourceMaps": true,
  141. "preLaunchTask": "run",
  142. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  143. "runtimeArgs": [
  144. "--enable-unsafe-es3-apis"
  145. ]
  146. },
  147. {
  148. "name": "Launch Local Dev - Views mode (Chrome)",
  149. "type": "chrome",
  150. "request": "launch",
  151. "url": "http://localhost:1338/localDev/index-views.html",
  152. "webRoot": "${workspaceRoot}/",
  153. "sourceMaps": true,
  154. "preLaunchTask": "run",
  155. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  156. "runtimeArgs": [
  157. "--enable-unsafe-es3-apis"
  158. ]
  159. },
  160. {
  161. "name": "Launch Local Dev (Experimental Firefox)",
  162. "type": "firefox",
  163. "request": "launch",
  164. "reAttach": true,
  165. "url": "http://localhost:1338/localDev/index.html",
  166. "pathMappings": [
  167. {
  168. "url": "http://localhost:1338",
  169. "path": "${workspaceFolder}"
  170. }
  171. ],
  172. "preLaunchTask": "run"
  173. },
  174. {
  175. "name": "Launch Build Validation (Chrome)",
  176. "type": "chrome",
  177. "request": "launch",
  178. "url": "http://localhost:1338/tests/validation/index.html",
  179. "webRoot": "${workspaceRoot}/",
  180. "sourceMaps": true,
  181. "preLaunchTask": "run",
  182. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  183. "runtimeArgs": [
  184. "--enable-unsafe-es3-apis"
  185. ]
  186. },
  187. {
  188. "name": "Launch Build Validation (Firefox)",
  189. "type": "firefox",
  190. "request": "launch",
  191. "reAttach": true,
  192. "webRoot": "${workspaceRoot}/",
  193. "url": "http://localhost:1338/tests/validation/index.html"
  194. },
  195. {
  196. "name": "Launch memory checks (Chrome)",
  197. "type": "chrome",
  198. "request": "launch",
  199. "url": "http://localhost:1338/tests/memoryChecks/index.html",
  200. "webRoot": "${workspaceRoot}/",
  201. "sourceMaps": true,
  202. "preLaunchTask": "run",
  203. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  204. "runtimeArgs": [
  205. "--enable-unsafe-es3-apis"
  206. ]
  207. },
  208. ]
  209. }