update vscode debugging config

This commit is contained in:
2026-05-25 15:03:22 +02:00
parent 607138f851
commit d8d95aefdf
+9 -3
View File
@@ -6,14 +6,20 @@
"configurations": [ "configurations": [
{ {
"name": "Debug Scelta Carriere in browser", "name": "Debug Scelta Carriere in browser",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"cwd": "${workspaceFolder}/scelta-carriera", "cwd": "${workspaceFolder}/scelta-carriera",
"env": { "env": {
"NO_COLOR": "1" "NO_COLOR": "1"
}, },
"outputCapture": "std",
"type": "node", "type": "node",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"skipFiles": [
"<node_internals>/**",
"**/node_modules/**",
"**/@vite/client/**"
],
"serverReadyAction": { "serverReadyAction": {
"action": "debugWithEdge", "action": "debugWithEdge",
"pattern": "Local:\\s+http://localhost:([0-9]+)/", "pattern": "Local:\\s+http://localhost:([0-9]+)/",