Files
elixforms-web-pages/.vscode/launch.json
T

26 lines
790 B
JSON

{
// 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": [
{
"name": "Debug Scelta Carriere in browser",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"cwd": "${workspaceFolder}/scelta-carriera",
"env": {
"NO_COLOR": "1"
},
"type": "node",
"serverReadyAction": {
"action": "debugWithEdge",
"pattern": "Local:\\s+http://localhost:([0-9]+)/",
"uriFormat": "http://localhost:%s",
"webRoot": "${workspaceFolder}/scelta-carriera/src"
},
},
]
}