launch.json 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  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 Node Material Editor (Edge)",
  19. "type": "edge",
  20. "version": "dev",
  21. "request": "launch",
  22. "url": "http://localhost:1338/nodeEditor/public/index-local.html",
  23. "webRoot": "${workspaceRoot}/",
  24. "sourceMaps": true,
  25. "preLaunchTask": "run",
  26. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  27. "runtimeArgs": [
  28. "--enable-unsafe-es3-apis"
  29. ]
  30. },
  31. {
  32. "name": "Launch Viewer (Chrome)",
  33. "type": "chrome",
  34. "request": "launch",
  35. "url": "http://localhost:9000/basicExample.html",
  36. "webRoot": "${workspaceRoot}/Viewer/",
  37. "sourceMaps": true,
  38. "preLaunchTask": "serve-viewer",
  39. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  40. "runtimeArgs": [
  41. "--enable-unsafe-es3-apis"
  42. ]
  43. },
  44. {
  45. "name": "Launch sandbox (Chrome)",
  46. "type": "chrome",
  47. "request": "launch",
  48. "url": "http://localhost:1338/sandbox/index-local.html",
  49. "webRoot": "${workspaceRoot}/",
  50. "sourceMaps": true,
  51. "preLaunchTask": "run",
  52. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  53. "runtimeArgs": [
  54. "--enable-unsafe-es3-apis"
  55. ]
  56. },
  57. {
  58. "name": "Launch playground (Chrome)",
  59. "type": "chrome",
  60. "request": "launch",
  61. "url": "http://localhost:1338/Playground/index-local.html",
  62. "webRoot": "${workspaceRoot}/",
  63. "sourceMaps": true,
  64. "preLaunchTask": "run",
  65. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  66. "runtimeArgs": [
  67. "--enable-unsafe-es3-apis"
  68. ]
  69. },
  70. {
  71. "name": "Launch playground (Edge)",
  72. "type": "edge",
  73. "version": "dev",
  74. "request": "launch",
  75. "url": "http://localhost:1338/Playground/index-local.html",
  76. "webRoot": "${workspaceRoot}/",
  77. "sourceMaps": true,
  78. "preLaunchTask": "run",
  79. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  80. "runtimeArgs": [
  81. "--enable-unsafe-es3-apis"
  82. ]
  83. },
  84. {
  85. "name": "Launch playground (Chrome+WebGL 1.0 forced)",
  86. "type": "chrome",
  87. "request": "launch",
  88. "url": "http://localhost:1338/Playground/index-local.html",
  89. "webRoot": "${workspaceRoot}/",
  90. "sourceMaps": true,
  91. "preLaunchTask": "run",
  92. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  93. "runtimeArgs": [
  94. "--disable-es3-apis"
  95. ]
  96. },
  97. {
  98. "name": "Launch playground (Chrome+SSL+Public address)",
  99. "type": "chrome",
  100. "request": "launch",
  101. "url": "https://localhost:1338/Playground/index-local.html",
  102. "webRoot": "${workspaceRoot}/",
  103. "sourceMaps": true,
  104. "preLaunchTask": "start-public-ssl",
  105. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  106. "runtimeArgs": [
  107. "--disable-es3-apis"
  108. ]
  109. },
  110. {
  111. "name": "Launch Materials Library (Chrome)",
  112. "type": "chrome",
  113. "request": "launch",
  114. "url": "http://localhost:1338/materialsLibrary/index.html",
  115. "webRoot": "${workspaceRoot}/",
  116. "sourceMaps": true,
  117. "preLaunchTask": "run",
  118. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  119. "runtimeArgs": [
  120. "--enable-unsafe-es3-apis"
  121. ]
  122. },
  123. {
  124. "name": "Launch Post Processes Library (Chrome)",
  125. "type": "chrome",
  126. "request": "launch",
  127. "url": "http://localhost:1338/postProcessLibrary/index.html",
  128. "webRoot": "${workspaceRoot}/",
  129. "sourceMaps": true,
  130. "preLaunchTask": "run",
  131. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  132. "runtimeArgs": [
  133. "--enable-unsafe-es3-apis"
  134. ]
  135. },
  136. {
  137. "name": "Launch Procedural Textures Library (Chrome)",
  138. "type": "chrome",
  139. "request": "launch",
  140. "url": "http://localhost:1338/proceduralTexturesLibrary/index.html",
  141. "webRoot": "${workspaceRoot}/",
  142. "sourceMaps": true,
  143. "preLaunchTask": "run",
  144. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  145. "runtimeArgs": [
  146. "--enable-unsafe-es3-apis"
  147. ]
  148. },
  149. {
  150. "name": "Launch Inspector (Chrome)",
  151. "type": "chrome",
  152. "request": "launch",
  153. "url": "http://localhost:1338/inspector/index.html",
  154. "webRoot": "${workspaceRoot}/",
  155. "sourceMaps": true,
  156. "preLaunchTask": "run",
  157. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  158. "runtimeArgs": [
  159. "--enable-unsafe-es3-apis"
  160. ]
  161. },
  162. {
  163. "name": "Launch Local Dev (Chrome)",
  164. "type": "chrome",
  165. "request": "launch",
  166. "url": "http://localhost:1338/localDev/index.html",
  167. "webRoot": "${workspaceRoot}/",
  168. "sourceMaps": true,
  169. "preLaunchTask": "run",
  170. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  171. "runtimeArgs": [
  172. "--enable-unsafe-es3-apis"
  173. ]
  174. },
  175. {
  176. "name": "Launch Local Dev (Edge)",
  177. "type": "edge",
  178. "version": "dev",
  179. "request": "launch",
  180. "url": "http://localhost:1338/localDev/index.html",
  181. "webRoot": "${workspaceRoot}/",
  182. "sourceMaps": true,
  183. "preLaunchTask": "run",
  184. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  185. "runtimeArgs": [
  186. "--enable-unsafe-es3-apis"
  187. ]
  188. },
  189. {
  190. "name": "Launch Local Dev - Worker mode (Chrome)",
  191. "type": "chrome",
  192. "request": "launch",
  193. "url": "http://localhost:1338/localDev/index-worker.html",
  194. "webRoot": "${workspaceRoot}/",
  195. "sourceMaps": true,
  196. "preLaunchTask": "run",
  197. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  198. "runtimeArgs": [
  199. "--enable-unsafe-es3-apis"
  200. ]
  201. },
  202. {
  203. "name": "Launch Local Dev - Views mode (Chrome)",
  204. "type": "chrome",
  205. "request": "launch",
  206. "url": "http://localhost:1338/localDev/index-views.html",
  207. "webRoot": "${workspaceRoot}/",
  208. "sourceMaps": true,
  209. "preLaunchTask": "run",
  210. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  211. "runtimeArgs": [
  212. "--enable-unsafe-es3-apis"
  213. ]
  214. },
  215. {
  216. "name": "Launch Build Validation (Chrome)",
  217. "type": "chrome",
  218. "request": "launch",
  219. "url": "http://localhost:1338/tests/validation/index.html",
  220. "webRoot": "${workspaceRoot}/",
  221. "sourceMaps": true,
  222. "preLaunchTask": "run",
  223. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  224. "runtimeArgs": [
  225. "--enable-unsafe-es3-apis"
  226. ]
  227. },
  228. {
  229. "name": "Launch Build Validation (Edge)",
  230. "type": "edge",
  231. "version": "dev",
  232. "request": "launch",
  233. "url": "http://localhost:1338/tests/validation/index.html",
  234. "webRoot": "${workspaceRoot}/",
  235. "sourceMaps": true,
  236. "preLaunchTask": "run",
  237. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  238. "runtimeArgs": [
  239. "--enable-unsafe-es3-apis"
  240. ]
  241. },
  242. {
  243. "name": "Launch memory checks (Chrome)",
  244. "type": "chrome",
  245. "request": "launch",
  246. "url": "http://localhost:1338/tests/memoryChecks/index.html",
  247. "webRoot": "${workspaceRoot}/",
  248. "sourceMaps": true,
  249. "preLaunchTask": "run",
  250. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  251. "runtimeArgs": [
  252. "--enable-unsafe-es3-apis"
  253. ]
  254. },
  255. ]
  256. }