From 99f9aca731fa88564e8df90f7acd83813c9a6c5c Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Fri, 11 Jul 2025 13:51:58 +0200 Subject: [PATCH] [ts] VS Code debug-printer launch config. --- spine-ts/.vscode/launch.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/spine-ts/.vscode/launch.json b/spine-ts/.vscode/launch.json index 7b7e86a6b..1a8e532c8 100644 --- a/spine-ts/.vscode/launch.json +++ b/spine-ts/.vscode/launch.json @@ -38,6 +38,26 @@ "name": "phaser-example", "url": "http://localhost:8080/spine-phaser/example/index.html", "webRoot": "${workspaceFolder}" + }, + { + "name": "debug-printer (ts)", + "type": "node", + "request": "launch", + "runtimeExecutable": "npx", + "runtimeArgs": [ + "tsx" + ], + "program": "${workspaceFolder}/spine-core/tests/DebugPrinter.ts", + "args": [ + "${workspaceFolder}/../examples/spineboy/export/spineboy-pro.json", + "${workspaceFolder}/../examples/spineboy/export/spineboy-pma.atlas", + "walk" + ], + "cwd": "${workspaceFolder}/spine-core", + "console": "integratedTerminal", + "skipFiles": [ + "/**" + ] } ]