added vscode launch.json for basic debugging

pull/11/head
Paco Hope 2022-06-14 23:05:00 -04:00
parent 47b9d50e9e
commit 17ca2972ac
1 changed files with 17 additions and 0 deletions

17
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,17 @@
{
// 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: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"args": ["demo.yaml"],
"justMyCode": true
}
]
}