Well, I should probably wait before I post since I found a solution shortly after. Anyone interested, here is a solution that works:
Source: https://github.com/microsoft/vscode-python/issues/6986#issuecomment-581960186
{
"version": "0.2.0",
"configurations": [
{
"name": "Run project in Debug Mode",
"type": "debugpy",
"request": "launch",
"program": "Main.py",
"console": "integratedTerminal",
"env": {
"PYTHONDONTWRITEBYTECODE": "1"
}
}
]
}