forked from lyft/react-javascript-to-typescript-transform
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlaunch.json
29 lines (29 loc) · 773 Bytes
/
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
{
"version": "0.2.0",
"configurations": [
{
"args": [],
"cwd": "${workspaceRoot}",
"env": {
"NODE_ENV": "test"
},
"console": "internalConsole",
"name": "Run Tests",
"outFiles": ["${workspaceRoot}/dist"],
"preLaunchTask": "tsc",
"program": "${workspaceRoot}/node_modules/.bin/jest",
"request": "launch",
"runtimeArgs": [],
"runtimeExecutable": null,
"sourceMaps": true,
"stopOnEntry": false,
"type": "node"
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858
}
]
}