Skip to content

Commit 0090b7a

Browse files
committed
Add launch.json
1 parent f8d7444 commit 0090b7a

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.vscode/launch.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
"type": "node",
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

Comments
 (0)