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 8d676b4 commit c70a755Copy full SHA for c70a755
.vscode/launch.json
@@ -0,0 +1,37 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Launch",
6
+ "type": "node",
7
+ "request": "launch",
8
+ "program": "${workspaceRoot}/app.js",
9
+ "stopOnEntry": false,
10
+ "args": [],
11
+ "cwd": "${workspaceRoot}",
12
+ "preLaunchTask": null,
13
+ "runtimeExecutable": null,
14
+ "runtimeArgs": [
15
+ "--nolazy"
16
+ ],
17
+ "env": {
18
+ "NODE_ENV": "development"
19
+ },
20
+ "externalConsole": false,
21
+ "sourceMaps": true,
22
+ "outDir": null
23
24
25
+ "name": "Attach",
26
27
+ "request": "attach",
28
+ "port": 5858,
29
+ "address": "localhost",
30
+ "restart": false,
31
+ "sourceMaps": false,
32
+ "outDir": null,
33
+ "localRoot": "${workspaceRoot}",
34
+ "remoteRoot": null
35
+ }
36
+ ]
37
+}
0 commit comments