From d8d95aefdf59c518e1d2d3ec0409113f1f0f1a5d Mon Sep 17 00:00:00 2001 From: Pier-Paolo Mammi Date: Mon, 25 May 2026 15:03:22 +0200 Subject: [PATCH] update vscode debugging config --- .vscode/launch.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index fde5018..5124266 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,14 +6,20 @@ "configurations": [ { "name": "Debug Scelta Carriere in browser", - "request": "launch", - "runtimeExecutable": "npm", - "runtimeArgs": ["run", "dev"], "cwd": "${workspaceFolder}/scelta-carriera", "env": { "NO_COLOR": "1" }, + "outputCapture": "std", "type": "node", + "request": "launch", + "runtimeExecutable": "npm", + "runtimeArgs": ["run", "dev"], + "skipFiles": [ + "/**", + "**/node_modules/**", + "**/@vite/client/**" + ], "serverReadyAction": { "action": "debugWithEdge", "pattern": "Local:\\s+http://localhost:([0-9]+)/",