From a296997f1f310b2ee3355411349bb4bde2b8a9e2 Mon Sep 17 00:00:00 2001 From: Cristian Dominguez Date: Mon, 5 May 2025 11:21:38 -0300 Subject: [PATCH] chore: update vscode debug config --- .vscode/launch.json | 6 ++---- .vscode/tasks.json | 21 --------------------- 2 files changed, 2 insertions(+), 25 deletions(-) delete mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json index ba66bf71..b9a25381 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -23,8 +23,7 @@ }, "sourceMaps": true, "smartStep": true, - "internalConsoleOptions": "openOnSessionStart", - "preLaunchTask": "Compile tests" + "internalConsoleOptions": "openOnSessionStart" }, { "type": "node", @@ -38,8 +37,7 @@ }, "sourceMaps": true, "smartStep": true, - "internalConsoleOptions": "openOnSessionStart", - "preLaunchTask": "Compile tests" + "internalConsoleOptions": "openOnSessionStart" } ] } diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index efbb147c..00000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "version": "2.0.0", - "problemMatcher": "$tsc", - "tasks": [ - { - "label": "Compile tests", - "group": { - "kind": "build", - "isDefault": true - }, - "command": "yarn", - "type": "shell", - "presentation": { - "focus": false, - "panel": "dedicated" - }, - "args": ["run", "pretest"], - "isBackground": false - } - ] -}