chore: add vscode launch config

This commit is contained in:
2021-07-05 12:06:37 -04:00
parent 3f46e560fd
commit f212d6e2f7

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

@@ -0,0 +1,15 @@
{
// 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: main.py File",
"type": "python",
"request": "launch",
"program": "main.py",
"console": "integratedTerminal"
}
]
}