launch.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "type": "pwa-chrome",
  9. "request": "launch",
  10. "name": "Examples",
  11. "url": "http://localhost:8080",
  12. "webRoot": "${workspaceFolder}"
  13. },
  14. {
  15. "type": "pwa-chrome",
  16. "request": "launch",
  17. "name": "drag-and-drop",
  18. "url": "http://localhost:8080/spine-webgl/example/drag-and-drop.html",
  19. "webRoot": "${workspaceFolder}"
  20. },
  21. {
  22. "type": "pwa-chrome",
  23. "request": "launch",
  24. "name": "barebones-dragon",
  25. "url": "http://localhost:8080/spine-webgl/example/barebones-dragon.html",
  26. "webRoot": "${workspaceFolder}"
  27. },
  28. {
  29. "type": "pwa-chrome",
  30. "request": "launch",
  31. "name": "threejs-example",
  32. "url": "http://localhost:8080/spine-threejs/example/index.html",
  33. "webRoot": "${workspaceFolder}"
  34. },
  35. {
  36. "type": "pwa-chrome",
  37. "request": "launch",
  38. "name": "phaser-example",
  39. "url": "http://localhost:8080/spine-phaser/example/index.html",
  40. "webRoot": "${workspaceFolder}"
  41. }
  42. ]
  43. }