RotorOps/.vscode/launch.json
David Pierron e8bd6b2972
Quality of life (#50)
* updated requirements.txt according to GRIMM's instructions

* added launch configuration and build tasks for VS Code

* updated build scripts and documentation
2023-05-18 22:16:38 -07:00

16 lines
483 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": "Run MissionGenerator.py",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/Generator/MissionGenerator.py",
"console": "integratedTerminal",
"justMyCode": true
}
]
}