-
-
Notifications
You must be signed in to change notification settings - Fork 183
Expand file tree
/
Copy pathlaunch.json
More file actions
37 lines (37 loc) · 1004 Bytes
/
launch.json
File metadata and controls
37 lines (37 loc) · 1004 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
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug adapter",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/src/phpDebug.ts",
"cwd": "${workspaceRoot}",
"args": ["--server=4711"],
"env": {
"NODE_ENV": "development"
},
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/**/*.js"]
},
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/**/*.js"]
},
{
"name": "Mocha",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"args": ["out/test", "--no-timeouts", "--colors"],
"cwd": "${workspaceRoot}",
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/**/*.js"]
}
]
}