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

16 lines
No EOL
317 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",
}
]
}