-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathlaunch.json
More file actions
29 lines (29 loc) · 574 Bytes
/
launch.json
File metadata and controls
29 lines (29 loc) · 574 Bytes
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
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach Debugger",
"port": 9229
},
{
"type": "node",
"request": "launch",
"name": "Jest Debug",
"program": "${workspaceRoot}/node_modules/jest/bin/jest.js",
"cwd": "${workspaceRoot}",
"args": [
"--runInBand"
],
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"sourceMaps": true,
"console": "integratedTerminal"
}
]
}