going-rogue/.vscode/launch.json

27 lines
711 B
JSON
Raw Normal View History

2022-04-26 22:23:17 -07:00
{
// 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": [
2023-02-18 10:40:36 -08:00
{
"name": "ErynRL",
"type": "python",
"request": "launch",
"module": "erynrl",
"args": [],
"justMyCode": true
},
2022-04-26 22:23:17 -07:00
{
"name": "ErynRL (Sandbox)",
2022-04-26 22:23:17 -07:00
"type": "python",
"request": "launch",
2022-05-12 09:05:27 -07:00
"module": "erynrl",
"args": [
"--sandbox"
],
2022-04-26 22:23:17 -07:00
"justMyCode": true
}
]
2022-05-12 09:05:27 -07:00
}