add vscode debug setting

This commit is contained in:
Kaz Saita(raspi4) 2024-03-30 12:01:47 +09:00
parent c87b88988e
commit 51a50a8c1b

13
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"type" : "debugpy",
"request": "launch",
"name": "Launch project",
"cwd": "${workspaceFolder}",
"module": "python-project-template",
//"args": ["run", "python", "-m", "python-project-template"],
}
]
}