Skip to main content

Debugger

VSCode Debugger

Abstra automatically configures your project directory to enable VSCode debugging (using .vscode/launch.json file).

Using the debugger

To use the debugger just click on the debug tab and start the Abstra Debugger. To learn more see VSCode docs.

launch.json

If your project does not automatically configure to use the VSCode debugger you can create the .vscode/launch.json file with the following content.

{
"version": "0.2.0",
"configurations": [
{
"name": "Abstra debugger",
"type": "debugpy",
"request": "launch",
"module": "abstra.cli",
"console": "integratedTerminal",
"args": ["editor"]
}
]
}