Created
January 5, 2023 05:04
-
-
Save FlameWert/b7f00b39c0bc944758655db35c05bc2d to your computer and use it in GitHub Desktop.
Multiple configurations on launch.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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 File", | |
"type": "python", | |
"request": "launch", | |
"program": "${file}", | |
"console": "integratedTerminal", | |
"args": "-n Main", | |
"purpose": ["debug-in-terminal"], | |
"justMyCode": true | |
}, | |
{ | |
"name": "Python: Module 1", | |
"type": "python", | |
"request": "launch", | |
"program": "${file}", | |
"console": "integratedTerminal", | |
"args": "-n Module 1", | |
"purpose": ["debug-in-terminal"], | |
"justMyCode": true | |
}, | |
{ | |
"name": "Python: Module 2", | |
"type": "python", | |
"request": "launch", | |
"program": "${file}", | |
"console": "integratedTerminal", | |
"args": "-n Module 2", | |
"purpose": ["debug-in-terminal"], | |
"justMyCode": true | |
}, | |
{ | |
"name": "Python: Module 3", | |
"type": "python", | |
"request": "launch", | |
"program": "${file}", | |
"console": "integratedTerminal", | |
"args": "-n Module 3", | |
"purpose": ["debug-in-terminal"], | |
"justMyCode": true | |
} | |
] | |
} | |
Author
FlameWert
commented
Jan 5, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment