dupeguru/.vscode/launch.json

17 lines
517 B
JSON
Raw Normal View History

2023-01-13 05:51:05 +00:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "DupuGuru",
2024-05-11 07:12:19 +00:00
"type": "debugpy",
2023-01-13 05:51:05 +00:00
"request": "launch",
"program": "run.py",
"console": "integratedTerminal",
"subProcess": true,
"justMyCode": false
},
]
}