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": [
{
"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_internals>/**",
"**/node_modules/**",
"**/@vite/client/**"
],
"serverReadyAction": {
"action": "debugWithEdge",
"pattern": "Local:\\s+http://localhost:([0-9]+)/",