dupeguru/.vscode/launch.json

17 lines
517 B
JSON
Raw Permalink Normal View History

2023-01-12 23:51:05 -06: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 02:12:19 -05:00
"type": "debugpy",
2023-01-12 23:51:05 -06:00
"request": "launch",
"program": "run.py",
"console": "integratedTerminal",
"subProcess": true,
"justMyCode": false
},
]
}