|
6 | 6 | "configurations": [ |
7 | 7 | { |
8 | 8 | "name": "Python: Current File", |
9 | | - "type": "python", |
| 9 | + "type": "debugpy", |
10 | 10 | "request": "launch", |
11 | 11 | "program": "${file}", |
12 | | - "console": "internalConsole", |
| 12 | + "console": "integratedTerminal", |
13 | 13 | }, |
14 | 14 | { |
15 | 15 | // Run the Python samples. |
16 | 16 | // tcod will be built and installed in editalbe mode. |
17 | 17 | "name": "Python: Python samples", |
18 | | - "type": "python", |
| 18 | + "type": "debugpy", |
19 | 19 | "request": "launch", |
20 | 20 | "program": "${workspaceFolder}/examples/samples_tcod.py", |
21 | 21 | "cwd": "${workspaceFolder}/examples", |
22 | | - "console": "internalConsole", |
| 22 | + "console": "integratedTerminal", |
23 | 23 | }, |
24 | 24 | { |
25 | 25 | "name": "Python: Run tests", |
26 | | - "type": "python", |
| 26 | + "type": "debugpy", |
27 | 27 | "request": "launch", |
28 | 28 | "module": "pytest", |
29 | 29 | "preLaunchTask": "develop python-tcod", |
30 | 30 | }, |
31 | 31 | { |
32 | 32 | "name": "Documentation: Launch Chrome", |
33 | 33 | "request": "launch", |
34 | | - "type": "pwa-chrome", |
| 34 | + "type": "chrome", |
35 | 35 | "url": "file://${workspaceFolder}/docs/_build/html/index.html", |
36 | 36 | "webRoot": "${workspaceFolder}", |
37 | 37 | "preLaunchTask": "build documentation", |
38 | 38 | }, |
39 | 39 | { |
40 | 40 | "name": "Documentation: Launch Edge", |
41 | 41 | "request": "launch", |
42 | | - "type": "pwa-msedge", |
| 42 | + "type": "msedge", |
43 | 43 | "url": "file://${workspaceFolder}/docs/_build/html/index.html", |
44 | 44 | "webRoot": "${workspaceFolder}", |
45 | 45 | "preLaunchTask": "build documentation", |
|
0 commit comments