File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ // Use IntelliSense to learn about possible attributes.
3+ // Hover to view descriptions of existing attributes.
4+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+ "version" : " 0.2.0" ,
6+ "configurations" : [
7+ {
8+ "name" : " Python Debugger: Current File" ,
9+ "type" : " debugpy" ,
10+ "request" : " launch" ,
11+ "program" : " ${file}" ,
12+ "console" : " integratedTerminal" ,
13+ "env" : {
14+ "PYTHONPATH" : " ${cwd}/src"
15+ }
16+ },
17+ {
18+ "name" : " Python Debugger: BasicPy" ,
19+ "type" : " debugpy" ,
20+ "request" : " launch" ,
21+ "program" : " ${cwd}/examples/BasicPy/src/BasicPy/main.py" ,
22+ "console" : " integratedTerminal" ,
23+ },
24+ {
25+ "name" : " Python Debugger: IntermediatePy" ,
26+ "type" : " debugpy" ,
27+ "request" : " launch" ,
28+ "program" : " ${cwd}/examples/IntermediatePy/src/IntermediatePy/main.py" ,
29+ "console" : " integratedTerminal" ,
30+ },
31+ {
32+ "name" : " Python Debugger: AdvancedPy" ,
33+ "type" : " debugpy" ,
34+ "request" : " launch" ,
35+ "program" : " ${cwd}/examples/AdvancedPy/src/AdvancedPy/main.py" ,
36+ "console" : " integratedTerminal" ,
37+ }
38+ ]
39+ }
You can’t perform that action at this time.
0 commit comments