advent-2022-python/.vscode/launch.json
Ruediger Ludwig a355de5d8b Initial
2022-11-30 19:39:52 +01:00

32 lines
No EOL
901 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: Advent",
"type": "python",
"request": "launch",
"console": "integratedTerminal",
"program": "advent"
},
{
"name": "Python: Advent with Args",
"type": "python",
"request": "launch",
"console": "integratedTerminal",
"program": "advent",
"args": [
"${input:dayToRun}"
]
}
],
"inputs": [
{
"id": "dayToRun",
"type": "promptString",
"description": "Which day should be run?"
}
]
}