Skip to content

Commit 956ab45

Browse files
authored
v3
1 parent d9528f7 commit 956ab45

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

.vscode/launch.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,46 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7+
{
8+
"command": "npm start",
9+
"name": "Run npm start",
10+
"request": "launch",
11+
"type": "node-terminal"
12+
},
13+
{
14+
"name": "Launch Chrome",
15+
"request": "launch",
16+
"type": "chrome",
17+
"url": "http://localhost:8080",
18+
"webRoot": "${workspaceFolder}"
19+
},
20+
{
21+
"name": "Attach to Chrome",
22+
"port": 9222,
23+
"request": "attach",
24+
"type": "chrome",
25+
"webRoot": "${workspaceFolder}"
26+
},
27+
{
28+
"name": "Attach to Chrome",
29+
"port": 9222,
30+
"request": "attach",
31+
"type": "chrome",
32+
"webRoot": "${workspaceFolder}"
33+
},
34+
{
35+
"console": "integratedTerminal",
36+
"internalConsoleOptions": "neverOpen",
37+
"name": "nodemon",
38+
"program": "${workspaceFolder}/app.js",
39+
"request": "launch",
40+
"restart": true,
41+
"runtimeExecutable": "nodemon",
42+
"skipFiles": [
43+
"<node_internals>/**"
44+
],
45+
"type": "node"
46+
},
747
{
848
"name": "Launch via NPM",
949
"request": "launch",

0 commit comments

Comments
 (0)