{ // 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: app.py", "type": "python", "request": "launch", "program": "${workspaceFolder}/src/app.py", "console": "integratedTerminal", "env": {"PYTHONPATH": "${workspaceRoot}/src/"} }, { "name": "Python: evaluation", "type": "python", "request": "launch", "program": "${workspaceFolder}/eval.py", "console": "integratedTerminal", "env": {"PYTHONPATH": "${workspaceRoot}/"} }, { "name": "Python: visualization", "type": "python", "request": "launch", "program": "${workspaceFolder}/vis.py", "console": "integratedTerminal", "env": {"PYTHONPATH": "${workspaceRoot}/"} } ] }