File tree 1 file changed +48
-17
lines changed
1 file changed +48
-17
lines changed Original file line number Diff line number Diff line change 215
215
"tasks" : [
216
216
{
217
217
"label" : " Clean" ,
218
- "type" : " npm" ,
219
- "script" : " clean" ,
220
- "problemMatcher" : [],
218
+ "type" : " shell" ,
219
+ "command" : " npm" ,
220
+ "args" : [
221
+ " run" ,
222
+ " clean"
223
+ ],
221
224
"presentation" : {
222
225
"reveal" : " never"
223
226
}
224
227
},
225
228
{
226
229
"label" : " Build" ,
227
- "type" : " npm" ,
228
- "script" : " watch" ,
230
+ "type" : " shell" ,
231
+ "command" : " npm" ,
232
+ "args" : [
233
+ " run" ,
234
+ " watch"
235
+ ],
229
236
"group" : {
230
237
"kind" : " build" ,
231
238
"isDefault" : true
241
248
},
242
249
{
243
250
"label" : " Rebuild" ,
244
- "type" : " npm" ,
245
- "script" : " rebuild" ,
251
+ "type" : " shell" ,
252
+ "command" : " npm" ,
253
+ "args" : [
254
+ " run" ,
255
+ " rebuild"
256
+ ],
246
257
"group" : " build" ,
247
258
"problemMatcher" : " $tsc" ,
248
259
"presentation" : {
254
265
},
255
266
{
256
267
"label" : " Build Debug" ,
257
- "type" : " npm" ,
258
- "script" : " build-debug" ,
268
+ "type" : " shell" ,
269
+ "command" : " npm" ,
270
+ "args" : [
271
+ " run" ,
272
+ " build-debug"
273
+ ],
259
274
"group" : " build" ,
260
275
"problemMatcher" : [],
261
276
"dependsOn" : [
265
280
},
266
281
{
267
282
"label" : " Rebuild Debug" ,
268
- "type" : " npm" ,
269
- "script" : " rebuild-debug" ,
283
+ "type" : " shell" ,
284
+ "command" : " npm" ,
285
+ "args" : [
286
+ " run" ,
287
+ " rebuild-debug"
288
+ ],
270
289
"group" : " build" ,
271
290
"problemMatcher" : [],
272
291
"dependsOn" : [
275
294
},
276
295
{
277
296
"label" : " Build Release" ,
278
- "type" : " npm" ,
279
- "script" : " build-release" ,
297
+ "type" : " shell" ,
298
+ "command" : " npm" ,
299
+ "args" : [
300
+ " run" ,
301
+ " build-release"
302
+ ],
280
303
"group" : " build" ,
281
304
"problemMatcher" : [],
282
305
"dependsOn" : [
286
309
},
287
310
{
288
311
"label" : " Rebuild Release" ,
289
- "type" : " npm" ,
290
- "script" : " rebuild-release" ,
312
+ "type" : " shell" ,
313
+ "command" : " npm" ,
314
+ "args" : [
315
+ " run" ,
316
+ " rebuild-release"
317
+ ],
291
318
"group" : " build" ,
292
319
"problemMatcher" : [],
293
320
"dependsOn" : [
296
323
},
297
324
{
298
325
"label" : " Lint" ,
299
- "type" : " npm" ,
300
- "script" : " lint-ide" ,
326
+ "type" : " shell" ,
327
+ "command" : " npm" ,
328
+ "args" : [
329
+ " run" ,
330
+ " lint-ide"
331
+ ],
301
332
"group" : " build" ,
302
333
"problemMatcher" : " $eslint-stylish" ,
303
334
"presentation" : {
You can’t perform that action at this time.
0 commit comments