Add launch.json for main.py for easy debug

This commit is contained in:
Alexandru Pisarenco
2021-01-09 03:05:52 +01:00
parent f9ad8c053a
commit fb4473a1a8

7
.vscode/launch.json vendored
View File

@@ -10,6 +10,13 @@
"request": "launch", "request": "launch",
"program": "${file}", "program": "${file}",
"console": "integratedTerminal" "console": "integratedTerminal"
},
{
"name": "Python: Main",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/main.py",
"console": "integratedTerminal"
} }
] ]
} }