forked from redhat-developer/vscode-yaml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.json
More file actions
70 lines (70 loc) · 2.1 KB
/
launch.json
File metadata and controls
70 lines (70 loc) · 2.1 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"version": "0.2.0",
"configurations": [
{
// A launch configuration that compiles the extension and then opens it inside a new window
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/dist/**/*.js"],
"preLaunchTask": "compile typescript",
"env": {
"DEBUG_VSCODE_YAML":"true",
"VSCODE_REDHAT_TELEMETRY_DEBUG":"true"
}
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"preLaunchTask": "compile test",
"args": [
"--disable-extension=ms-kubernetes-tools.vscode-kubernetes-tools",
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test",
"${workspaceRoot}/test/testFixture"
],
"outFiles": ["${workspaceFolder}/out/test/**/*.js"],
"env": {
"DEBUG_VSCODE_YAML":"true"
}
},
{
"name": "Launch Web Extension",
"type": "extensionHost",
"debugWebWorkerHost": true,
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionDevelopmentKind=web"
],
"sourceMaps": true,
"env": {
"DEBUG_VSCODE_YAML": "true",
"VSCODE_REDHAT_TELEMETRY_DEBUG":"true"
},
"outFiles": ["${workspaceRoot}/dist/**/*.js"],
"preLaunchTask": "compile webpack"
},
{
"name": "Debug UI Tests",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/.bin/extest",
"args": [
"setup-and-run",
"${workspaceFolder}/out/test/ui-test/allTestsSuite.js",
"-o",
"${workspaceFolder}/custom-settings.json",
"--mocha_config",
"${workspaceFolder}/src/ui-test/.mocharc-debug.js"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}