1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version" : " 0.2.0" ,
6
+ "compounds" : [
7
+ {
8
+ "name" : " Run" ,
9
+ "configurations" : [" Main" ],
10
+ "presentation" : {
11
+ "hidden" : false ,
12
+ "group" : " " ,
13
+ "order" : 1
14
+ },
15
+ "stopAll" : true
16
+ },
17
+ {
18
+ "name" : " Debug" ,
19
+ "configurations" : [" Main Debug" , " Renderer Debug" ],
20
+ "presentation" : {
21
+ "hidden" : false ,
22
+ "group" : " " ,
23
+ "order" : 2
24
+ },
25
+ "stopAll" : true
26
+ },
27
+ {
28
+ "name" : " Breakpoints" ,
29
+ "configurations" : [" Main Breakpoints" ," Renderer Breakpoints" ],
30
+ "presentation" : {
31
+ "hidden" : false ,
32
+ "group" : " " ,
33
+ "order" : 3
34
+ },
35
+ "stopAll" : true
36
+ }
37
+ ],
38
+ "configurations" : [
39
+ {
40
+ "name" : " Main" ,
41
+ "type" : " node" ,
42
+ "request" : " launch" ,
43
+ "runtimeExecutable" : " yarn" ,
44
+ "runtimeArgs" : [" run" , " dev" ],
45
+ "presentation" : { "hidden" : true }
46
+ },
47
+ {
48
+ "name" : " Main Debug" ,
49
+ "type" : " node" ,
50
+ "request" : " launch" ,
51
+ "runtimeExecutable" : " yarn" ,
52
+ "runtimeArgs" : [" run" , " dev" ],
53
+ "env" : {
54
+ "DEBUG" : " true"
55
+ },
56
+ "presentation" : { "hidden" : true }
57
+ },
58
+ {
59
+ "name" : " Main Breakpoints" ,
60
+ "type" : " node" ,
61
+ "request" : " launch" ,
62
+ "runtimeExecutable" : " yarn" ,
63
+ "runtimeArgs" : [" run" , " dev" ],
64
+ "env" : {
65
+ "DEBUG" : " true" ,
66
+ "DEBUG_SOURCEMAPS" : " true"
67
+ },
68
+ "presentation" : { "hidden" : true }
69
+ },
70
+ {
71
+ "name" : " Renderer Debug" ,
72
+ "port" : 9229 ,
73
+ "request" : " attach" ,
74
+ "type" : " chrome" ,
75
+ "timeout" : 15000 ,
76
+ "skipFiles" : [
77
+ " <node_internals>/**" ,
78
+ " ${workspaceRoot}/node_modules/**" ,
79
+ " ${workspaceRoot}/dist-electron/**" ,
80
+ " http://127.0.0.1:5173/**"
81
+ ],
82
+ "presentation" : { "hidden" : true }
83
+ },
84
+ {
85
+ "name" : " Renderer Breakpoints" ,
86
+ "port" : 9229 ,
87
+ "request" : " attach" ,
88
+ "type" : " chrome" ,
89
+ "timeout" : 15000 ,
90
+ "skipFiles" : [
91
+ " <node_internals>/**" ,
92
+ " ${workspaceRoot}/node_modules/**" ,
93
+ " ${workspaceRoot}/dist-electron/**" ,
94
+ " http://127.0.0.1:5173/**"
95
+ ],
96
+ "presentation" : { "hidden" : true }
97
+ }
98
+ ]
99
+ }
0 commit comments