From 633be4b4e46c939166a5790cb90bfe472e22ce5e Mon Sep 17 00:00:00 2001 From: Nico Haider Date: Fri, 17 Apr 2026 17:21:13 +0200 Subject: [PATCH] debug(core): add debug script --- .vscode/launch.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..0365270 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,21 @@ +{ + // 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": "node", + "request": "launch", + "name": "Dev", + "skipFiles": [ + "/**" + ], + "cwd": "${workspaceRoot}", + "runtimeExecutable": "npm", + "runtimeArgs": [ + "run-script", "dev" + ], + } + ] +} \ No newline at end of file