Files
v2realbot/.vscode/launch.json
David Brázda be93c17848 retreat commit
2023-10-09 09:15:52 +02:00

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
}
]
}