forked from exceptionless/Exceptionless.JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.json
More file actions
45 lines (45 loc) · 1001 Bytes
/
launch.json
File metadata and controls
45 lines (45 loc) · 1001 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"version": "0.2.0",
"configurations": [
{
"name": "Test",
"request": "launch",
"type": "pwa-node",
"program": "${workspaceRoot}/node_modules/.bin/_mocha",
"args": [
"--colors",
"-u", "tdd",
"--timeout", "999999",
"${workspaceFolder}/src/**/*-spec.ts"
],
"runtimeArgs": [
"--require",
"ts-node/register"
],
"internalConsoleOptions": "openOnSessionStart",
"sourceMaps": true,
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/**"
]
},
{
"name": "Express",
"request": "launch",
"type": "node",
"program": "${workspaceRoot}/example/express/app.js",
"runtimeArgs": [
"--nolazy"
],
"sourceMaps": true,
"cwd": "${workspaceRoot}",
},
{
"name": "Attach",
"request": "attach",
"type": "node",
"port": 5858,
"sourceMaps": true,
}
]
}