open_phantom/.vscode/launch.json
Ethan Clark 2bea6dc790 initial commit
2025-03-21 12:51:16 -07:00

19 lines
615 B
JSON

{
// 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": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"python": "${config:python.pythonPath}",
"program": "${fileDirname}/main.py",
"console": "integratedTerminal",
"cwd": "${fileDirname}",
"args": [
]
}
]
}