kuwot-api/.vscode/launch.json
2025-10-18 10:37:22 +07:00

18 lines
No EOL
400 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Run API Server (npm start)",
"runtimeExecutable": "npm",
"runtimeArgs": [
"start"
],
"cwd": "${workspaceFolder}",
"envFile": "${workspaceFolder}/.env",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}