launch.json
372 Bytes
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File with Modified PYTHONPATH",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true,
"env": {
"PYTHONPATH": "${workspaceFolder}/parent_directory:${env:PYTHONPATH}"
}
}
]
}