launch.json 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. {
  2. "version": "0.1.0",
  3. "configurations": [
  4. {
  5. "name": "Launch sandbox (Chrome)",
  6. "type": "chrome",
  7. "request": "launch",
  8. "url": "http://localhost:1338/sandbox/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 playground (Chrome)",
  19. "type": "chrome",
  20. "request": "launch",
  21. "url": "http://localhost:1338/Playground/index-local.html",
  22. "webRoot": "${workspaceRoot}/",
  23. "sourceMaps": true,
  24. "preLaunchTask": "run",
  25. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  26. "runtimeArgs": [
  27. "--enable-unsafe-es3-apis"
  28. ]
  29. },
  30. {
  31. "name": "Launch playground (Chrome+WebGL 1.0 forced)",
  32. "type": "chrome",
  33. "request": "launch",
  34. "url": "http://localhost:1338/Playground/index-local.html",
  35. "webRoot": "${workspaceRoot}/",
  36. "sourceMaps": true,
  37. "preLaunchTask": "run",
  38. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  39. "runtimeArgs": [
  40. "--disable-es3-apis"
  41. ]
  42. },
  43. {
  44. "name": "Launch Materials Library (Chrome)",
  45. "type": "chrome",
  46. "request": "launch",
  47. "url": "http://localhost:1338/materialsLibrary/index.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 Post Processes Library (Chrome)",
  58. "type": "chrome",
  59. "request": "launch",
  60. "url": "http://localhost:1338/postProcessLibrary/index.html",
  61. "webRoot": "${workspaceRoot}/",
  62. "sourceMaps": true,
  63. "preLaunchTask": "run",
  64. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  65. "runtimeArgs": [
  66. "--enable-unsafe-es3-apis"
  67. ]
  68. },
  69. {
  70. "name": "Launch Procedural Textures Library (Chrome)",
  71. "type": "chrome",
  72. "request": "launch",
  73. "url": "http://localhost:1338/proceduralTexturesLibrary/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 Inspector (Chrome)",
  84. "type": "chrome",
  85. "request": "launch",
  86. "url": "http://localhost:1338/inspector/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 Local Dev (Chrome)",
  97. "type": "chrome",
  98. "request": "launch",
  99. "url": "http://localhost:1338/localDev/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 Build Validation (Chrome)",
  110. "type": "chrome",
  111. "request": "launch",
  112. "url": "http://localhost:1338/tests/validation/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. }