nephthys/.vscode/launch.json
MMK21 3029ca9627
Add a VSCode launch.json (#64)
This makes debugging with breakpoints etc easier in VSC
2025-10-21 09:31:45 +00:00

15 lines
456 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: Run Nephthys",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/nephthys/__main__.py",
"console": "integratedTerminal"
}
]
}