python-project-template/.vscode/launch.json

13 lines
352 B
JSON
Raw Normal View History

2024-03-30 12:01:47 +09:00
{
"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"],
}
]
}