Add Python debug configuration.

This commit is contained in:
Philippe Tourigny 2022-07-16 14:56:29 +09:00
parent 145fe8b2f6
commit 4f76e1015f
1 changed files with 9 additions and 1 deletions

10
.vscode/launch.json vendored
View File

@ -5,7 +5,15 @@
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File (Integrated Terminal)",
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "Python: Current File (File Directory)",
"type": "python",
"request": "launch",
"program": "${file}",