We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8d7444 commit 0090b7aCopy full SHA for 0090b7a
1 file changed
.vscode/launch.json
@@ -0,0 +1,35 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Launch",
6
+ "type": "node",
7
+ "request": "launch",
8
+ "program": "${workspaceRoot}/examples/test.js",
9
+ "stopOnEntry": false,
10
+ "args": [],
11
+ "cwd": "${workspaceRoot}",
12
+ "preLaunchTask": null,
13
+ "runtimeExecutable": null,
14
+ "runtimeArgs": ["--nolazy"],
15
+ "env": {
16
+ "NODE_ENV": "development"
17
+ },
18
+ "externalConsole": false,
19
+ "sourceMaps": true,
20
+ "outDir": "${workspaceRoot}/dist"
21
22
23
+ "name": "Attach",
24
25
+ "request": "attach",
26
+ "port": 5858,
27
+ "address": "localhost",
28
+ "restart": false,
29
+ "sourceMaps": false,
30
+ "outDir": null,
31
+ "localRoot": "${workspaceRoot}",
32
+ "remoteRoot": null
33
+ }
34
+ ]
35
+}
0 commit comments