-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathlaunch.json
117 lines (117 loc) · 3.03 KB
/
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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"version": "0.2.0",
// List of configurations. Add new configurations or edit existing ones.
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "compile"
},
{
"name": "Launch Extension (skip views)",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"stopOnEntry": false,
"sourceMaps": true,
"skipFiles": [
// "<node_internals>/**"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "compile - quick"
},
{
"name": "Run Web Extension in VS Code",
"type": "pwa-extensionHost",
"debugWebWorkerHost": true,
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionDevelopmentKind=web"
],
"outFiles": [
"${workspaceFolder}/dist/web/**/*.js"
],
// "preLaunchTask": "npm: watch-web"
},
{
"name": "Integration Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--folder-uri=${workspaceFolder}/src/test/tmpFolder/",
"--user-data-dir=${workspaceFolder}/src/test/tmpUserProfile/",
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index",
"--disable-extensions"
],
"outFiles": ["${workspaceFolder}/out/test/**/*.js"],
"preLaunchTask": "compile - quick"
},
{
"type": "chrome",
"request": "launch",
"name": "Search debugger (html)",
"file": "${workspaceFolder}/views/searchview/static/search.html",
"preLaunchTask": "npm: compile - views/searchview",
"outFiles": [
"${workspaceFolder}/views/searchview/out/**/*.js"
]
},
{
"type": "chrome",
"request": "launch",
"name": "Plan view (html)",
"file": "${workspaceFolder}/views/planview/static/plans.html",
"preLaunchTask": "npm: compile - views/planview",
"outFiles": [
"${workspaceFolder}/views/planview/out/**/*.js"
]
},
{
"type": "chrome",
"request": "launch",
"name": "Overview (html)",
"file": "${workspaceFolder}/views/overview/overview.html",
"outFiles": [
"${workspaceFolder}/views/overview/*.js"
]
},
{
"type": "chrome",
"request": "launch",
"name": "Problem/State view (html)",
"file": "${workspaceFolder}/views/modelView/static/problemInitView.html",
"preLaunchTask": "npm: compile - views/modelView",
"outFiles": [
"${workspaceFolder}/views/modelView/out/*.js"
]
},
{
"type": "chrome",
"request": "launch",
"name": "Graph view (html)",
"file": "${workspaceFolder}/views/modelView/static/graphView.html",
"preLaunchTask": "npm: compile - views/modelView",
"outFiles": [
"${workspaceFolder}/views/**/*.js"
]
},
]
}