26 lines
754 B
JSON
26 lines
754 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Python: Aktuální soubor",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"cwd": "${workspaceFolder}",
|
|
"env": {
|
|
"PYTHONPATH": "${workspaceFolder}:${workspaceFolder}/bld"
|
|
},
|
|
"console": "integratedTerminal",
|
|
"justMyCode": true,
|
|
"python": "${command:python.interpreterPath}",
|
|
"internalConsoleOptions": "openOnSessionStart"
|
|
},
|
|
{
|
|
"name": "Python: File",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"justMyCode": true
|
|
}
|
|
]
|
|
} |