debug config

This commit is contained in:
rdavydov
2022-12-17 17:08:12 +03:00
parent 163d7de8f5
commit e7a107002c

16
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: run.py",
"type": "python",
"request": "launch",
"program": "${cwd}/run.py",
"console": "integratedTerminal",
"justMyCode": true
}
]
}