python-piped-api-client/.vscode/launch.json

16 lines
445 B
JSON

{
"version": "0.2.0",
"configurations": [
// Pre-made Python debugger (automatically sets `PYTHONPATH` to workspace root directory)
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"env": {
"PYTHONPATH": "${workspaceRoot}"
},
"console": "integratedTerminal"
}
]
}