1
1
{
2
- "version" : " 0.2.0" ,
3
- "configurations" : [
4
- {
5
- "name" : " Sync on iOS" ,
6
- "type" : " nativescript" ,
7
- "platform" : " ios" ,
8
- "request" : " launch" ,
9
- "appRoot" : " ${workspaceRoot}" ,
10
- "sourceMaps" : true ,
11
- "diagnosticLogging" : false ,
12
- "emulator" : false ,
13
- "rebuild" : false ,
14
- "syncAllFiles" : false
15
- },
16
- {
17
- "name" : " Launch on iOS" ,
18
- "type" : " nativescript" ,
19
- "platform" : " ios" ,
20
- "request" : " launch" ,
21
- "appRoot" : " ${workspaceRoot}" ,
22
- "sourceMaps" : true ,
23
- "diagnosticLogging" : false ,
24
- "emulator" : false ,
25
- "rebuild" : true ,
26
- "stopOnEntry" : true
27
- },
28
- {
29
- "name" : " Attach on iOS" ,
30
- "type" : " nativescript" ,
31
- "platform" : " ios" ,
32
- "request" : " attach" ,
33
- "appRoot" : " ${workspaceRoot}" ,
34
- "sourceMaps" : true ,
35
- "diagnosticLogging" : false ,
36
- "emulator" : false
37
- },
38
- {
39
- "name" : " Sync on Android" ,
40
- "type" : " nativescript" ,
41
- "platform" : " android" ,
42
- "request" : " launch" ,
43
- "appRoot" : " ${workspaceRoot}" ,
44
- "sourceMaps" : true ,
45
- "diagnosticLogging" : false ,
46
- "emulator" : false ,
47
- "rebuild" : false
48
- },
49
- {
50
- "name" : " Launch on Android" ,
51
- "type" : " nativescript" ,
52
- "platform" : " android" ,
53
- "request" : " launch" ,
54
- "appRoot" : " ${workspaceRoot}" ,
55
- "sourceMaps" : true ,
56
- "diagnosticLogging" : false ,
57
- "emulator" : false ,
58
- "rebuild" : true ,
59
- "stopOnEntry" : true
60
- },
61
- {
62
- "name" : " Attach on Android" ,
63
- "type" : " nativescript" ,
64
- "platform" : " android" ,
65
- "request" : " attach" ,
66
- "appRoot" : " ${workspaceRoot}" ,
67
- "sourceMaps" : true ,
68
- "diagnosticLogging" : false ,
69
- "emulator" : false
70
- }
71
- ]
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
+ "configurations" : [
7
+ {
8
+ "name" : " Launch on iOS" ,
9
+ "type" : " nativescript" ,
10
+ "request" : " launch" ,
11
+ "platform" : " ios" ,
12
+ "appRoot" : " ${workspaceRoot}" ,
13
+ "sourceMaps" : true ,
14
+ "stopOnEntry" : true ,
15
+ "tnsArgs" : [
16
+ " --syncAllFiles"
17
+ ],
18
+ "watch" : true
19
+ },
20
+ {
21
+ "name" : " Attach on iOS" ,
22
+ "type" : " nativescript" ,
23
+ "request" : " attach" ,
24
+ "platform" : " ios" ,
25
+ "appRoot" : " ${workspaceRoot}" ,
26
+ "sourceMaps" : true ,
27
+ "tnsArgs" : [
28
+ " --syncAllFiles"
29
+ ],
30
+ "watch" : false
31
+ },
32
+ {
33
+ "name" : " Launch on Android" ,
34
+ "type" : " nativescript" ,
35
+ "request" : " launch" ,
36
+ "platform" : " android" ,
37
+ "appRoot" : " ${workspaceRoot}" ,
38
+ "sourceMaps" : true ,
39
+ "stopOnEntry" : false ,
40
+ "tnsArgs" : [
41
+ " --syncAllFiles"
42
+ ],
43
+ "watch" : true
44
+ },
45
+ {
46
+ "name" : " Attach on Android" ,
47
+ "type" : " nativescript" ,
48
+ "request" : " attach" ,
49
+ "platform" : " android" ,
50
+ "appRoot" : " ${workspaceRoot}" ,
51
+ "sourceMaps" : true ,
52
+ "tnsArgs" : [
53
+ " --syncAllFiles"
54
+ ],
55
+ "watch" : false
56
+ }
57
+ ]
72
58
}
0 commit comments