add launch.json for vscode debugging
This commit is contained in:
parent
bd0cc3863e
commit
7fdc8480bd
1 changed files with 15 additions and 0 deletions
15
.vscode/launch.json
vendored
Normal file
15
.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "mwmbl",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"module": "mwmbl.main",
|
||||||
|
"python": "${workspaceFolder}/.venv/bin/python",
|
||||||
|
"stopOnEntry": false,
|
||||||
|
"console": "integratedTerminal",
|
||||||
|
"justMyCode": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in a new issue