add launch.json for vscode debugging

This commit is contained in:
Rishabh Singh Ahluwalia 2023-02-10 20:59:09 -08:00
parent bd0cc3863e
commit 7fdc8480bd
1 changed files with 15 additions and 0 deletions

15
.vscode/launch.json vendored Normal file
View 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
}
]
}