We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 000f2b6 commit 94c83d3Copy full SHA for 94c83d3
.vscodeSnippets/launch.json
@@ -0,0 +1,19 @@
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
+ // debug in VSCode with ts-node
8
+ {
9
+ "name": "Current TS File",
10
+ "type": "node",
11
+ "request": "launch",
12
+ "args": ["${relativeFile}"],
13
+ "runtimeArgs": ["--nolazy", "-r", "ts-node/register"],
14
+ "sourceMaps": true,
15
+ "cwd": "${workspaceRoot}",
16
+ "protocol": "inspector",
17
+ }
18
+ ]
19
+}
0 commit comments