forked from marktext/marktext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.json
More file actions
49 lines (49 loc) · 1.08 KB
/
launch.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch MarkText",
"program": "${workspaceFolder}/.electron-vue/dev-runner.js",
"env": {
"NODE_ENV": "development",
"MARKTEXT_BUILD_VSCODE_DEBUG": "1"
},
"outFiles": [
"${workspaceFolder}/dist/electron/main.js"
]
},
{
"type": "node",
"request": "attach",
"name": "Attach to Main Process",
"port": 5861,
"timeout": 60000,
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/dist/electron/main.js"
]
},
{
"name": "Attach to Renderer Process",
"type": "chrome",
"request": "attach",
"port": 8315,
"sourceMaps": true,
"webRoot": "${workspaceFolder}/src",
"timeout": 60000,
"urlFilter": "http://localhost:9091"
}
],
"compounds": [
{
"name": "Debug MarkText",
"configurations": [
"Launch MarkText",
"Attach to Main Process",
"Attach to Renderer Process"
]
}
]
}