Files
2022NoWayHome/.vscode/launch.json
T
nathanrsxtn 9ccf4bcea2 Add auto path preloading
- Refactor recording to use commands
2022-02-16 22:31:00 -07:00

28 lines
664 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": [
{
"type": "java",
"name": "Launch Main",
"request": "launch",
"mainClass": "frc4388.robot.Main",
"projectName": "2022NoWayHome"
},
{
"type": "wpilib",
"name": "WPILib Desktop Debug",
"request": "launch",
"desktop": true
},
{
"type": "wpilib",
"name": "WPILib roboRIO Debug",
"request": "launch",
"desktop": false
}
]
}