launch.json 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. "runtimeArgs": [
  13. "--enable-unsafe-es3-apis"
  14. ]
  15. },
  16. {
  17. "name": "Launch playground (Chrome+WebGL 1.0 forced)",
  18. "type": "chrome",
  19. "request": "launch",
  20. "url": "http://localhost:1338/Playground/index-local.html",
  21. "webRoot": "${workspaceRoot}/",
  22. "sourceMaps": true,
  23. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  24. "runtimeArgs": [
  25. "--disable-es3-apis"
  26. ]
  27. },
  28. {
  29. "name": "Launch Materials Library (Chrome)",
  30. "type": "chrome",
  31. "request": "launch",
  32. "url": "http://localhost:1338/materialsLibrary/index.html",
  33. "webRoot": "${workspaceRoot}/",
  34. "sourceMaps": true,
  35. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  36. "runtimeArgs": [
  37. "--enable-unsafe-es3-apis"
  38. ]
  39. },
  40. {
  41. "name": "Launch Post Processes Library (Chrome)",
  42. "type": "chrome",
  43. "request": "launch",
  44. "url": "http://localhost:1338/postProcessLibrary/index.html",
  45. "webRoot": "${workspaceRoot}/",
  46. "sourceMaps": true,
  47. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  48. "runtimeArgs": [
  49. "--enable-unsafe-es3-apis"
  50. ]
  51. },
  52. {
  53. "name": "Launch Procedural Textures Library (Chrome)",
  54. "type": "chrome",
  55. "request": "launch",
  56. "url": "http://localhost:1338/proceduralTexturesLibrary/index.html",
  57. "webRoot": "${workspaceRoot}/",
  58. "sourceMaps": true,
  59. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  60. "runtimeArgs": [
  61. "--enable-unsafe-es3-apis"
  62. ]
  63. },
  64. {
  65. "name": "Launch Inspector (Chrome)",
  66. "type": "chrome",
  67. "request": "launch",
  68. "url": "http://localhost:1338/inspector/index.html",
  69. "webRoot": "${workspaceRoot}/",
  70. "sourceMaps": true,
  71. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  72. "runtimeArgs": [
  73. "--enable-unsafe-es3-apis"
  74. ]
  75. },
  76. {
  77. "name": "Launch Local Dev (Chrome)",
  78. "type": "chrome",
  79. "request": "launch",
  80. "url": "http://localhost:1338/localDev/index.html",
  81. "webRoot": "${workspaceRoot}/",
  82. "sourceMaps": true,
  83. "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug",
  84. "runtimeArgs": [
  85. "--enable-unsafe-es3-apis"
  86. ]
  87. }
  88. ]
  89. }