| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "version": "0.1.0",
- "configurations": [
- {
- "name": "Launch playground (Chrome)",
- "type": "chrome",
- "request": "launch",
- "url": "http://localhost:1338/Playground/index-local.html",
- "webRoot": "${workspaceRoot}/",
- "sourceMaps": true,
- "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug"
- },
- {
- "name": "Launch Materials Library (Chrome)",
- "type": "chrome",
- "request": "launch",
- "url": "http://localhost:1338/materialsLibrary/index.html",
- "webRoot": "${workspaceRoot}/",
- "sourceMaps": true,
- "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug"
- },
- {
- "name": "Launch Post Processes Library (Chrome)",
- "type": "chrome",
- "request": "launch",
- "url": "http://localhost:1338/postProcessLibrary/index.html",
- "webRoot": "${workspaceRoot}/",
- "sourceMaps": true,
- "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug"
- },
- {
- "name": "Launch Procedural Textures Library (Chrome)",
- "type": "chrome",
- "request": "launch",
- "url": "http://localhost:1338/proceduralTexturesLibrary/index.html",
- "webRoot": "${workspaceRoot}/",
- "sourceMaps": true,
- "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug"
- },
- {
- "name": "Launch Inspector (Chrome)",
- "type": "chrome",
- "request": "launch",
- "url": "http://localhost:1338/inspector/index.html",
- "webRoot": "${workspaceRoot}/",
- "sourceMaps": true,
- "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug"
- },
- {
- "name": "Launch Local Dev (Chrome)",
- "type": "chrome",
- "request": "launch",
- "url": "http://localhost:1338/localDev/index.html",
- "webRoot": "${workspaceRoot}/",
- "sourceMaps": true,
- "userDataDir": "${workspaceRoot}/.tempChromeProfileForDebug"
- }
- ]
- }
|