23 lines
388 B
Plaintext
23 lines
388 B
Plaintext
{
|
|
"folders": [
|
|
{
|
|
"path": ".."
|
|
}
|
|
],
|
|
"settings": {},
|
|
"launch": {
|
|
"version": "0.2.0",
|
|
"configurations": [{
|
|
"name": "Python: Current File",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"console": "integratedTerminal",
|
|
"cwd": "${fileDirname}",
|
|
"env": {
|
|
"PYTHONPATH": "${workspaceFolder}${pathSeparator}${env:PYTHONPATH}"
|
|
}
|
|
}]
|
|
}
|
|
}
|