Skip to content

Commit 0e590a7

Browse files
committed
Add missing debug configuration parameters
1 parent 5e0cf6e commit 0e590a7

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

package.json

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@
8989
"appRoot": ".",
9090
"sourceMaps": true,
9191
"diagnosticLogging": false,
92-
"stopOnEntry": true,
9392
"emulator": false
9493
},
9594
{
@@ -110,7 +109,6 @@
110109
"appRoot": ".",
111110
"sourceMaps": true,
112111
"diagnosticLogging": false,
113-
"stopOnEntry": true,
114112
"emulator": true
115113
},
116114
{
@@ -131,7 +129,6 @@
131129
"appRoot": ".",
132130
"sourceMaps": true,
133131
"diagnosticLogging": false,
134-
"stopOnEntry": true,
135132
"emulator": false
136133
},
137134
{
@@ -142,7 +139,6 @@
142139
"appRoot": ".",
143140
"sourceMaps": true,
144141
"diagnosticLogging": false,
145-
"stopOnEntry": true,
146142
"emulator": true
147143
},
148144
{
@@ -183,6 +179,11 @@
183179
"description": "Optional arguments passed to the NativeScript CLI executable.",
184180
"default": null
185181
},
182+
"appRoot": {
183+
"type": "string",
184+
"description": "The path to the root folder of the application relative to the current working directory.",
185+
"default": null
186+
},
186187
"sourceMaps": {
187188
"type": "boolean",
188189
"description": "Use JavaScript source maps (if they exist).",
@@ -208,6 +209,24 @@
208209
"attach": {
209210
"required": [],
210211
"properties": {
212+
"runtimeArgs": {
213+
"type": "array",
214+
"description": "Optional arguments passed to the runtime executable.",
215+
"items": {
216+
"type": "string"
217+
},
218+
"default": []
219+
},
220+
"tnsArgs": {
221+
"type": "string",
222+
"description": "Optional arguments passed to the NativeScript CLI executable.",
223+
"default": null
224+
},
225+
"appRoot": {
226+
"type": "string",
227+
"description": "The path to the root folder of the application relative to the current working directory.",
228+
"default": null
229+
},
211230
"sourceMaps": {
212231
"type": "boolean",
213232
"description": "Use JavaScript source maps (if they exist).",

0 commit comments

Comments
 (0)