Actuator-Controller-HITL/code/.vscode/launch.json
SchrodingerError 482d724e20 Initial Commit
2024-08-14 14:42:16 -05:00

21 lines
659 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",
"program": "${file}",
"console": "integratedTerminal",
"env": {
"PYDEVD_DISABLE_FILE_VALIDATION": "1"
},
"args": [
"-Xfrozen_modules=off"
]
}
]
}