We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e50f0f commit 6c70518Copy full SHA for 6c70518
2 files changed
.vscode/launch.json
@@ -1,7 +1,24 @@
1
// A launch configuration that compiles the extension and then opens it inside a new window
2
{
3
"version": "0.1.0",
4
- "configurations": [{
+ "configurations": [
5
+ {
6
+ "name": "Python",
7
+ "type": "python",
8
+ "request": "launch",
9
+ "stopOnEntry": true,
10
+ "pythonPath": "${python.pythonPath}",
11
+ "program": "${file}",
12
+ "cwd": "${workspaceRoot}",
13
+ "env": {},
14
+ "envFile": "${workspaceRoot}/.env",
15
+ "debugOptions": [
16
+ "WaitOnAbnormalExit",
17
+ "WaitOnNormalExit",
18
+ "RedirectOutput"
19
+ ]
20
+ },
21
22
"name": "Launch Extension",
23
"type": "extensionHost",
24
"request": "launch",
0 commit comments