1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "type": "pwa-chrome",
- "request": "launch",
- "name": "Examples",
- "url": "http://localhost:8080",
- "webRoot": "${workspaceFolder}"
- },
- {
- "type": "pwa-chrome",
- "request": "launch",
- "name": "drag-and-drop",
- "url": "http://localhost:8080/spine-webgl/example/drag-and-drop.html",
- "webRoot": "${workspaceFolder}"
- },
- {
- "type": "pwa-chrome",
- "request": "launch",
- "name": "barebones-dragon",
- "url": "http://localhost:8080/spine-webgl/example/barebones-dragon.html",
- "webRoot": "${workspaceFolder}"
- },
- {
- "type": "pwa-chrome",
- "request": "launch",
- "name": "threejs-example",
- "url": "http://localhost:8080/spine-threejs/example/index.html",
- "webRoot": "${workspaceFolder}"
- },
- {
- "type": "pwa-chrome",
- "request": "launch",
- "name": "phaser-example",
- "url": "http://localhost:8080/spine-phaser/example/index.html",
- "webRoot": "${workspaceFolder}"
- }
- ]
- }
|