AI-or-not/.vscode/launch.json

14 lines
246 B
JSON
Raw Normal View History

2023-01-27 16:37:28 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
2023-01-27 17:45:20 +00:00
"program": "${file}",
2023-01-27 16:37:28 +00:00
"console": "integratedTerminal",
"justMyCode": true,
}
]
}