2025-07-11 14:16:24 +02:00

64 lines
1.7 KiB
JSON

{
// 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": [
{
"name": "headless test (ts)",
"type": "node",
"request": "launch",
"runtimeExecutable": "npx",
"runtimeArgs": [
"tsx"
],
"program": "${workspaceFolder}/spine-core/tests/HeadlessTest.ts",
"args": [
"${workspaceFolder}/../examples/spineboy/export/spineboy-pro.json",
"${workspaceFolder}/../examples/spineboy/export/spineboy-pma.atlas",
"walk"
],
"cwd": "${workspaceFolder}/spine-core",
"console": "integratedTerminal",
"skipFiles": [
"<node_internals>/**"
]
},
{
"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}"
},
]
}