chore: Add vscode launch.json

This commit is contained in:
Andrew Senetar 2023-01-12 23:51:05 -06:00
parent 8125e3ec97
commit 549eb7f153
Signed by: arsenetar
GPG Key ID: C63300DCE48AB2F1
2 changed files with 19 additions and 2 deletions

4
.gitignore vendored
View File

@ -87,8 +87,8 @@ cython_debug/
# Visual Studio Code
.vscode/*
!.vscode/settings.json
#!.vscode/tasks.json
#!.vscode/launch.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

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": "DupuGuru",
"type": "python",
"request": "launch",
"program": "run.py",
"console": "integratedTerminal",
"subProcess": true,
"justMyCode": false
},
]
}