forked from MikhailSemichev/vote-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch.json
42 lines (42 loc) · 1.52 KB
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
// Используйте IntelliSense, чтобы узнать о возможных атрибутах.
// Наведите указатель мыши, чтобы просмотреть описания существующих атрибутов.
// Для получения дополнительной информации посетите: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "ATTACH API",
"port": 43499,
"protocol": "inspector",
"restart": true
},
{
"type": "node",
"request": "launch",
"name": "NODEMON API",
"runtimeExecutable": "nodemon",
"program": "${workspaceFolder}/api/index.js",
"restart": true,
"env": {
"NODE_ENV": "development"
},
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "nodemon",
"runtimeExecutable": "C:\\Users\\АТТО\\AppData\\Roaming\\npm\\nodemon.cmd",
"program": "${workspaceFolder}/api/index.js",
"restart": true,
"env": {
"NODE_ENV": "development"
},
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}