We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e3cbb0 commit a0c5f14Copy full SHA for a0c5f14
.vscode/launch.json
@@ -8,15 +8,27 @@
8
"runtimeExecutable": "${execPath}",
9
"args": [
10
"--extensionDevelopmentPath=${workspaceRoot}/out",
11
+ // "--disable-extensions"
12
+ ],
13
+ "outFiles": [
14
+ "${workspaceFolder}/out/**/*.js"
15
],
- // "outFiles": [
- // "${workspaceFolder}/"
- // ],
16
"sourceMaps": true,
17
"env": {
18
"TSS_DEBUG": "9229",
19
"TSS_REMOTE_DEBUG": "9229"
20
}
21
},
22
+ {
23
+ "name": "Attach to TS Server",
24
+ "type": "node",
25
+ "request": "attach",
26
+ "protocol": "inspector",
27
+ "port": 9229,
28
+ "sourceMaps": true,
29
30
31
32
+ }
33
]
34
0 commit comments