Files
Termix/.vscode/launch.json
2024-12-04 21:04:46 -06:00

20 lines
482 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Run application",
"type": "node",
"request": "launch",
"cwd": "D:/Programming Projects/SSH-Project/ssh-project/frontend",
"console": "integratedTerminal",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script",
"start"
],
"skipFiles": [
"<node_internals>/**"
]
}
]
}