@wavemaker/angular-codegen 11.5.0-next.40301 → 11.5.0-next.NULL

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. angular-codegen/.npmrc +1 -0
  2. angular-codegen/angular-app/.npmrc +1 -0
  3. angular-codegen/angular-app/angular.json +121 -1009
  4. angular-codegen/angular-app/build-scripts/build.js +30 -0
  5. angular-codegen/angular-app/build-scripts/post-build.js +19 -13
  6. angular-codegen/angular-app/package-lock.json +25218 -23221
  7. angular-codegen/angular-app/package.json +57 -51
  8. angular-codegen/angular-app/src/app/lazy-load-scripts.resolve.ts +2 -4
  9. angular-codegen/angular-app/src/assets/print.css +32 -0
  10. angular-codegen/angular-app/src/assets/styles/css/wm-style.css +1 -1
  11. angular-codegen/angular-app/src/polyfills.ts +23 -39
  12. angular-codegen/angular-app/tsconfig.json +6 -3
  13. angular-codegen/angular-app/tsconfig.web-app.json +2 -2
  14. angular-codegen/angular-app/wm-custom-webpack.config.js +8 -11
  15. angular-codegen/build-angular-app.js +1 -1
  16. angular-codegen/dependencies/expression-parser.cjs.js +13624 -12592
  17. angular-codegen/dependencies/pipe-provider.cjs.js +124411 -57687
  18. angular-codegen/dependencies/transpilation-mobile.cjs.js +50253 -27675
  19. angular-codegen/dependencies/transpilation-web.cjs.js +50253 -27675
  20. angular-codegen/download-packages.js +10 -3
  21. angular-codegen/package-lock.json +3633 -2087
  22. angular-codegen/package.json +7 -2
  23. angular-codegen/src/codegen.js +1 -1
  24. angular-codegen/src/gen-app-skeleton.js +1 -1
  25. angular-codegen/src/handlebar-helpers.js +1 -1
  26. angular-codegen/src/pages-util.js +1 -1
  27. angular-codegen/src/update-angular-json.js +1 -1
  28. angular-codegen/templates/app-prefabs.module.ts.hbs +0 -1
  29. angular-codegen/templates/app-routes.ts.hbs +6 -5
  30. angular-codegen/templates/app.module.ts.hbs +24 -4
  31. angular-codegen/templates/layout/layout.module.ts.hbs +1 -1
  32. angular-codegen/templates/page/page.component.ts.hbs +4 -4
  33. angular-codegen/templates/page/page.module.ts.hbs +3 -3
  34. angular-codegen/templates/partial/partial.component.ts.hbs +5 -5
  35. angular-codegen/templates/partial/partial.module.ts.hbs +1 -2
  36. angular-codegen/templates/prefab/prefab.module.ts.hbs +0 -1
@@ -29,6 +29,11 @@
29
29
  "assets": [
30
30
  "src/favicon.ico",
31
31
  "src/assets",
32
+ {
33
+ "glob": "print.css",
34
+ "input": "src/assets/",
35
+ "output": "."
36
+ },
32
37
  {
33
38
  "glob": "**/*",
34
39
  "input": "libraries/locales/",
@@ -58,9 +63,9 @@
58
63
  "scripts": [
59
64
  "./node_modules/lodash/lodash.min.js",
60
65
  "./node_modules/x2js/x2js.js",
61
- "./node_modules/d3/d3.min.js",
66
+ "./node_modules/d3/dist/d3.min.js",
62
67
  "./node_modules/he/he.js",
63
- "./node_modules/@wavemaker.com/nvd3/build/nv.d3.min.js",
68
+ "./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
64
69
  "./node_modules/jquery/dist/jquery.min.js",
65
70
  "./node_modules/jquery-ui/ui/disable-selection.js",
66
71
  "./node_modules/jquery-ui/ui/version.js",
@@ -77,6 +82,7 @@
77
82
  "./node_modules/@wavemaker/app-ng-runtime/scripts/swipey/swipey.jquery.plugin.js",
78
83
  "./node_modules/@wavemaker/app-ng-runtime/scripts/jquery.ui.touch-punch/jquery.ui.touch-punch.min.js",
79
84
  "./node_modules/moment/min/moment.min.js",
85
+ "./node_modules/moment-timezone/builds/moment-timezone.min.js",
80
86
  "./node_modules/fullcalendar/main.min.js",
81
87
  "./node_modules/summernote/dist/summernote-lite.min.js",
82
88
  "./node_modules/hammerjs/hammer.min.js",
@@ -97,7 +103,14 @@
97
103
  "with": "src/environments/environment.prod.ts"
98
104
  }
99
105
  ],
100
- "optimization": true,
106
+ "optimization": {
107
+ "scripts": true,
108
+ "styles": {
109
+ "minify": true,
110
+ "inlineCritical": false
111
+ },
112
+ "fonts": true
113
+ },
101
114
  "outputHashing": "all",
102
115
  "sourceMap": false,
103
116
  "namedChunks": false,
@@ -120,8 +133,8 @@
120
133
  }
121
134
  ],
122
135
  "optimization": false,
123
- "outputHashing": "all",
124
- "sourceMap": false,
136
+ "outputHashing": "none",
137
+ "sourceMap": true,
125
138
  "namedChunks": true,
126
139
  "aot": true,
127
140
  "extractLicenses": false,
@@ -133,8 +146,38 @@
133
146
  "maximumWarning": "2mb"
134
147
  }
135
148
  ]
149
+ },
150
+ "local": {
151
+ "fileReplacements": [
152
+ {
153
+ "replace": "src/environments/environment.ts",
154
+ "with": "src/environments/environment.dev.ts"
155
+ }
156
+ ],
157
+ "optimization": {
158
+ "scripts": false,
159
+ "styles": {
160
+ "minify": false,
161
+ "inlineCritical": false
162
+ },
163
+ "fonts": true
164
+ },
165
+ "outputHashing": "none",
166
+ "sourceMap": true,
167
+ "namedChunks": true,
168
+ "aot": true,
169
+ "extractLicenses": false,
170
+ "vendorChunk": false,
171
+ "buildOptimizer": true,
172
+ "budgets": [
173
+ {
174
+ "type": "initial",
175
+ "maximumWarning": "2mb"
176
+ }
177
+ ]
136
178
  }
137
- }
179
+ },
180
+ "defaultConfiguration": "production"
138
181
  },
139
182
  "build-ng": {
140
183
  "builder": "@angular-devkit/build-angular:browser",
@@ -149,7 +192,12 @@
149
192
  "tsConfig": "src/tsconfig.app.json",
150
193
  "assets": [
151
194
  "src/favicon.ico",
152
- "src/assets"
195
+ "src/assets",
196
+ {
197
+ "glob": "print.css",
198
+ "input": "src/assets/",
199
+ "output": "."
200
+ }
153
201
  ],
154
202
  "styles": [
155
203
  "src/styles.css",
@@ -160,9 +208,9 @@
160
208
  "scripts": [
161
209
  "./node_modules/lodash/lodash.min.js",
162
210
  "./node_modules/x2js/x2js.js",
163
- "./node_modules/d3/d3.min.js",
211
+ "./node_modules/d3/dist/d3.min.js",
164
212
  "./node_modules/he/he.js",
165
- "./node_modules/@wavemaker.com/nvd3/build/nv.d3.min.js",
213
+ "./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
166
214
  "./node_modules/jquery/dist/jquery.min.js",
167
215
  "./node_modules/jquery-ui/ui/disable-selection.js",
168
216
  "./node_modules/jquery-ui/ui/version.js",
@@ -176,6 +224,7 @@
176
224
  "./node_modules/jquery-ui/ui/widgets/droppable.js",
177
225
  "./libraries/scripts/datatable/datatable.js",
178
226
  "./node_modules/moment/min/moment.min.js",
227
+ "./node_modules/moment-timezone/builds/moment-timezone.min.js",
179
228
  "./node_modules/fullcalendar/main.min.js",
180
229
  "./node_modules/summernote/dist/summernote-lite.min.js",
181
230
  "./node_modules/hammerjs/hammer.min.js",
@@ -216,18 +265,6 @@
216
265
  "options": {
217
266
  "browserTarget": "angular-app:build"
218
267
  }
219
- },
220
- "lint": {
221
- "builder": "@angular-devkit/build-angular:tslint",
222
- "options": {
223
- "tsConfig": [
224
- "src/tsconfig.app.json",
225
- "src/tsconfig.spec.json"
226
- ],
227
- "exclude": [
228
- "**/node_modules/**"
229
- ]
230
- }
231
268
  }
232
269
  }
233
270
  },
@@ -248,18 +285,6 @@
248
285
  "tsConfig": "projects/core/tsconfig.lib.prod.json"
249
286
  }
250
287
  }
251
- },
252
- "lint": {
253
- "builder": "@angular-devkit/build-angular:tslint",
254
- "options": {
255
- "tsConfig": [
256
- "projects/core/tsconfig.lib.json",
257
- "projects/core/tsconfig.spec.json"
258
- ],
259
- "exclude": [
260
- "**/node_modules/**"
261
- ]
262
- }
263
288
  }
264
289
  }
265
290
  },
@@ -299,18 +324,6 @@
299
324
  ],
300
325
  "assets": []
301
326
  }
302
- },
303
- "lint": {
304
- "builder": "@angular-devkit/build-angular:tslint",
305
- "options": {
306
- "tsConfig": [
307
- "projects/components/base/tsconfig.lib.json",
308
- "projects/components/base/tsconfig.spec.json"
309
- ],
310
- "exclude": [
311
- "**/node_modules/**"
312
- ]
313
- }
314
327
  }
315
328
  }
316
329
  },
@@ -324,25 +337,13 @@
324
337
  "builder": "@angular-devkit/build-angular:ng-packagr",
325
338
  "options": {
326
339
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
327
- "project": "projects/components/widgets/basic/default/package.json"
340
+ "project": "projects/components/widgets/basic/default/ng-package.json"
328
341
  },
329
342
  "configurations": {
330
343
  "production": {
331
344
  "tsConfig": "projects/components/widgets/basic/default/tsconfig.lib.prod.json"
332
345
  }
333
346
  }
334
- },
335
- "lint": {
336
- "builder": "@angular-devkit/build-angular:tslint",
337
- "options": {
338
- "tsConfig": [
339
- "projects/components/widgets/tsconfig.lib.json",
340
- "projects/components/widgets/tsconfig.spec.json"
341
- ],
342
- "exclude": [
343
- "**/node_modules/**"
344
- ]
345
- }
346
347
  }
347
348
  }
348
349
  },
@@ -356,25 +357,13 @@
356
357
  "builder": "@angular-devkit/build-angular:ng-packagr",
357
358
  "options": {
358
359
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
359
- "project": "projects/components/widgets/basic/progress/package.json"
360
+ "project": "projects/components/widgets/basic/progress/ng-package.json"
360
361
  },
361
362
  "configurations": {
362
363
  "production": {
363
364
  "tsConfig": "projects/components/widgets/basic/progress/tsconfig.lib.prod.json"
364
365
  }
365
366
  }
366
- },
367
- "lint": {
368
- "builder": "@angular-devkit/build-angular:tslint",
369
- "options": {
370
- "tsConfig": [
371
- "projects/components/widgets/tsconfig.lib.json",
372
- "projects/components/widgets/tsconfig.spec.json"
373
- ],
374
- "exclude": [
375
- "**/node_modules/**"
376
- ]
377
- }
378
367
  }
379
368
  }
380
369
  },
@@ -388,25 +377,13 @@
388
377
  "builder": "@angular-devkit/build-angular:ng-packagr",
389
378
  "options": {
390
379
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
391
- "project": "projects/components/widgets/basic/rich-text-editor/package.json"
380
+ "project": "projects/components/widgets/basic/rich-text-editor/ng-package.json"
392
381
  },
393
382
  "configurations": {
394
383
  "production": {
395
384
  "tsConfig": "projects/components/widgets/basic/rich-text-editor/tsconfig.lib.prod.json"
396
385
  }
397
386
  }
398
- },
399
- "lint": {
400
- "builder": "@angular-devkit/build-angular:tslint",
401
- "options": {
402
- "tsConfig": [
403
- "projects/components/widgets/tsconfig.lib.json",
404
- "projects/components/widgets/tsconfig.spec.json"
405
- ],
406
- "exclude": [
407
- "**/node_modules/**"
408
- ]
409
- }
410
387
  }
411
388
  }
412
389
  },
@@ -420,25 +397,13 @@
420
397
  "builder": "@angular-devkit/build-angular:ng-packagr",
421
398
  "options": {
422
399
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
423
- "project": "projects/components/widgets/basic/search/package.json"
400
+ "project": "projects/components/widgets/basic/search/ng-package.json"
424
401
  },
425
402
  "configurations": {
426
403
  "production": {
427
404
  "tsConfig": "projects/components/widgets/basic/search/tsconfig.lib.prod.json"
428
405
  }
429
406
  }
430
- },
431
- "lint": {
432
- "builder": "@angular-devkit/build-angular:tslint",
433
- "options": {
434
- "tsConfig": [
435
- "projects/components/widgets/tsconfig.lib.json",
436
- "projects/components/widgets/tsconfig.spec.json"
437
- ],
438
- "exclude": [
439
- "**/node_modules/**"
440
- ]
441
- }
442
407
  }
443
408
  }
444
409
  },
@@ -452,25 +417,13 @@
452
417
  "builder": "@angular-devkit/build-angular:ng-packagr",
453
418
  "options": {
454
419
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
455
- "project": "projects/components/widgets/basic/tree/package.json"
420
+ "project": "projects/components/widgets/basic/tree/ng-package.json"
456
421
  },
457
422
  "configurations": {
458
423
  "production": {
459
424
  "tsConfig": "projects/components/widgets/basic/tree/tsconfig.lib.prod.json"
460
425
  }
461
426
  }
462
- },
463
- "lint": {
464
- "builder": "@angular-devkit/build-angular:tslint",
465
- "options": {
466
- "tsConfig": [
467
- "projects/components/widgets/tsconfig.lib.json",
468
- "projects/components/widgets/tsconfig.spec.json"
469
- ],
470
- "exclude": [
471
- "**/node_modules/**"
472
- ]
473
- }
474
427
  }
475
428
  }
476
429
  },
@@ -484,25 +437,13 @@
484
437
  "builder": "@angular-devkit/build-angular:ng-packagr",
485
438
  "options": {
486
439
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
487
- "project": "projects/components/widgets/input/default/package.json"
440
+ "project": "projects/components/widgets/input/default/ng-package.json"
488
441
  },
489
442
  "configurations": {
490
443
  "production": {
491
444
  "tsConfig": "projects/components/widgets/input/default/tsconfig.lib.prod.json"
492
445
  }
493
446
  }
494
- },
495
- "lint": {
496
- "builder": "@angular-devkit/build-angular:tslint",
497
- "options": {
498
- "tsConfig": [
499
- "projects/components/widgets/tsconfig.lib.json",
500
- "projects/components/widgets/tsconfig.spec.json"
501
- ],
502
- "exclude": [
503
- "**/node_modules/**"
504
- ]
505
- }
506
447
  }
507
448
  }
508
449
  },
@@ -516,25 +457,13 @@
516
457
  "builder": "@angular-devkit/build-angular:ng-packagr",
517
458
  "options": {
518
459
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
519
- "project": "projects/components/widgets/input/calendar/package.json"
460
+ "project": "projects/components/widgets/input/calendar/ng-package.json"
520
461
  },
521
462
  "configurations": {
522
463
  "production": {
523
464
  "tsConfig": "projects/components/widgets/input/calendar/tsconfig.lib.prod.json"
524
465
  }
525
466
  }
526
- },
527
- "lint": {
528
- "builder": "@angular-devkit/build-angular:tslint",
529
- "options": {
530
- "tsConfig": [
531
- "projects/components/widgets/tsconfig.lib.json",
532
- "projects/components/widgets/tsconfig.spec.json"
533
- ],
534
- "exclude": [
535
- "**/node_modules/**"
536
- ]
537
- }
538
467
  }
539
468
  }
540
469
  },
@@ -548,25 +477,13 @@
548
477
  "builder": "@angular-devkit/build-angular:ng-packagr",
549
478
  "options": {
550
479
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
551
- "project": "projects/components/widgets/input/chips/package.json"
480
+ "project": "projects/components/widgets/input/chips/ng-package.json"
552
481
  },
553
482
  "configurations": {
554
483
  "production": {
555
484
  "tsConfig": "projects/components/widgets/input/chips/tsconfig.lib.prod.json"
556
485
  }
557
486
  }
558
- },
559
- "lint": {
560
- "builder": "@angular-devkit/build-angular:tslint",
561
- "options": {
562
- "tsConfig": [
563
- "projects/components/widgets/tsconfig.lib.json",
564
- "projects/components/widgets/tsconfig.spec.json"
565
- ],
566
- "exclude": [
567
- "**/node_modules/**"
568
- ]
569
- }
570
487
  }
571
488
  }
572
489
  },
@@ -580,25 +497,13 @@
580
497
  "builder": "@angular-devkit/build-angular:ng-packagr",
581
498
  "options": {
582
499
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
583
- "project": "projects/components/widgets/input/color-picker/package.json"
500
+ "project": "projects/components/widgets/input/color-picker/ng-package.json"
584
501
  },
585
502
  "configurations": {
586
503
  "production": {
587
504
  "tsConfig": "projects/components/widgets/input/color-picker/tsconfig.lib.prod.json"
588
505
  }
589
506
  }
590
- },
591
- "lint": {
592
- "builder": "@angular-devkit/build-angular:tslint",
593
- "options": {
594
- "tsConfig": [
595
- "projects/components/widgets/tsconfig.lib.json",
596
- "projects/components/widgets/tsconfig.spec.json"
597
- ],
598
- "exclude": [
599
- "**/node_modules/**"
600
- ]
601
- }
602
507
  }
603
508
  }
604
509
  },
@@ -612,25 +517,13 @@
612
517
  "builder": "@angular-devkit/build-angular:ng-packagr",
613
518
  "options": {
614
519
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
615
- "project": "projects/components/widgets/input/currency/package.json"
520
+ "project": "projects/components/widgets/input/currency/ng-package.json"
616
521
  },
617
522
  "configurations": {
618
523
  "production": {
619
524
  "tsConfig": "projects/components/widgets/input/currency/tsconfig.lib.prod.json"
620
525
  }
621
526
  }
622
- },
623
- "lint": {
624
- "builder": "@angular-devkit/build-angular:tslint",
625
- "options": {
626
- "tsConfig": [
627
- "projects/components/widgets/tsconfig.lib.json",
628
- "projects/components/widgets/tsconfig.spec.json"
629
- ],
630
- "exclude": [
631
- "**/node_modules/**"
632
- ]
633
- }
634
527
  }
635
528
  }
636
529
  },
@@ -644,25 +537,13 @@
644
537
  "builder": "@angular-devkit/build-angular:ng-packagr",
645
538
  "options": {
646
539
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
647
- "project": "projects/components/widgets/input/epoch/package.json"
540
+ "project": "projects/components/widgets/input/epoch/ng-package.json"
648
541
  },
649
542
  "configurations": {
650
543
  "production": {
651
544
  "tsConfig": "projects/components/widgets/input/epoch/tsconfig.lib.prod.json"
652
545
  }
653
546
  }
654
- },
655
- "lint": {
656
- "builder": "@angular-devkit/build-angular:tslint",
657
- "options": {
658
- "tsConfig": [
659
- "projects/components/widgets/tsconfig.lib.json",
660
- "projects/components/widgets/tsconfig.spec.json"
661
- ],
662
- "exclude": [
663
- "**/node_modules/**"
664
- ]
665
- }
666
547
  }
667
548
  }
668
549
  },
@@ -676,25 +557,13 @@
676
557
  "builder": "@angular-devkit/build-angular:ng-packagr",
677
558
  "options": {
678
559
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
679
- "project": "projects/components/widgets/input/file-upload/package.json"
560
+ "project": "projects/components/widgets/input/file-upload/ng-package.json"
680
561
  },
681
562
  "configurations": {
682
563
  "production": {
683
564
  "tsConfig": "projects/components/widgets/input/file-upload/tsconfig.lib.prod.json"
684
565
  }
685
566
  }
686
- },
687
- "lint": {
688
- "builder": "@angular-devkit/build-angular:tslint",
689
- "options": {
690
- "tsConfig": [
691
- "projects/components/widgets/tsconfig.lib.json",
692
- "projects/components/widgets/tsconfig.spec.json"
693
- ],
694
- "exclude": [
695
- "**/node_modules/**"
696
- ]
697
- }
698
567
  }
699
568
  }
700
569
  },
@@ -708,25 +577,13 @@
708
577
  "builder": "@angular-devkit/build-angular:ng-packagr",
709
578
  "options": {
710
579
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
711
- "project": "projects/components/widgets/input/rating/package.json"
580
+ "project": "projects/components/widgets/input/rating/ng-package.json"
712
581
  },
713
582
  "configurations": {
714
583
  "production": {
715
584
  "tsConfig": "projects/components/widgets/input/rating/tsconfig.lib.prod.json"
716
585
  }
717
586
  }
718
- },
719
- "lint": {
720
- "builder": "@angular-devkit/build-angular:tslint",
721
- "options": {
722
- "tsConfig": [
723
- "projects/components/widgets/tsconfig.lib.json",
724
- "projects/components/widgets/tsconfig.spec.json"
725
- ],
726
- "exclude": [
727
- "**/node_modules/**"
728
- ]
729
- }
730
587
  }
731
588
  }
732
589
  },
@@ -740,25 +597,13 @@
740
597
  "builder": "@angular-devkit/build-angular:ng-packagr",
741
598
  "options": {
742
599
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
743
- "project": "projects/components/widgets/input/slider/package.json"
600
+ "project": "projects/components/widgets/input/slider/ng-package.json"
744
601
  },
745
602
  "configurations": {
746
603
  "production": {
747
604
  "tsConfig": "projects/components/widgets/input/slider/tsconfig.lib.prod.json"
748
605
  }
749
606
  }
750
- },
751
- "lint": {
752
- "builder": "@angular-devkit/build-angular:tslint",
753
- "options": {
754
- "tsConfig": [
755
- "projects/components/widgets/tsconfig.lib.json",
756
- "projects/components/widgets/tsconfig.spec.json"
757
- ],
758
- "exclude": [
759
- "**/node_modules/**"
760
- ]
761
- }
762
607
  }
763
608
  }
764
609
  },
@@ -772,25 +617,13 @@
772
617
  "builder": "@angular-devkit/build-angular:ng-packagr",
773
618
  "options": {
774
619
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
775
- "project": "projects/components/widgets/data/card/package.json"
620
+ "project": "projects/components/widgets/data/card/ng-package.json"
776
621
  },
777
622
  "configurations": {
778
623
  "production": {
779
624
  "tsConfig": "projects/components/widgets/data/card/tsconfig.lib.prod.json"
780
625
  }
781
626
  }
782
- },
783
- "lint": {
784
- "builder": "@angular-devkit/build-angular:tslint",
785
- "options": {
786
- "tsConfig": [
787
- "projects/components/widgets/tsconfig.lib.json",
788
- "projects/components/widgets/tsconfig.spec.json"
789
- ],
790
- "exclude": [
791
- "**/node_modules/**"
792
- ]
793
- }
794
627
  }
795
628
  }
796
629
  },
@@ -804,25 +637,13 @@
804
637
  "builder": "@angular-devkit/build-angular:ng-packagr",
805
638
  "options": {
806
639
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
807
- "project": "projects/components/widgets/data/form/package.json"
640
+ "project": "projects/components/widgets/data/form/ng-package.json"
808
641
  },
809
642
  "configurations": {
810
643
  "production": {
811
644
  "tsConfig": "projects/components/widgets/data/form/tsconfig.lib.prod.json"
812
645
  }
813
646
  }
814
- },
815
- "lint": {
816
- "builder": "@angular-devkit/build-angular:tslint",
817
- "options": {
818
- "tsConfig": [
819
- "projects/components/widgets/tsconfig.lib.json",
820
- "projects/components/widgets/tsconfig.spec.json"
821
- ],
822
- "exclude": [
823
- "**/node_modules/**"
824
- ]
825
- }
826
647
  }
827
648
  }
828
649
  },
@@ -836,25 +657,13 @@
836
657
  "builder": "@angular-devkit/build-angular:ng-packagr",
837
658
  "options": {
838
659
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
839
- "project": "projects/components/widgets/data/list/package.json"
660
+ "project": "projects/components/widgets/data/list/ng-package.json"
840
661
  },
841
662
  "configurations": {
842
663
  "production": {
843
664
  "tsConfig": "projects/components/widgets/data/list/tsconfig.lib.prod.json"
844
665
  }
845
666
  }
846
- },
847
- "lint": {
848
- "builder": "@angular-devkit/build-angular:tslint",
849
- "options": {
850
- "tsConfig": [
851
- "projects/components/widgets/tsconfig.lib.json",
852
- "projects/components/widgets/tsconfig.spec.json"
853
- ],
854
- "exclude": [
855
- "**/node_modules/**"
856
- ]
857
- }
858
667
  }
859
668
  }
860
669
  },
@@ -868,25 +677,13 @@
868
677
  "builder": "@angular-devkit/build-angular:ng-packagr",
869
678
  "options": {
870
679
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
871
- "project": "projects/components/widgets/data/pagination/package.json"
680
+ "project": "projects/components/widgets/data/pagination/ng-package.json"
872
681
  },
873
682
  "configurations": {
874
683
  "production": {
875
684
  "tsConfig": "projects/components/widgets/data/pagination/tsconfig.lib.prod.json"
876
685
  }
877
686
  }
878
- },
879
- "lint": {
880
- "builder": "@angular-devkit/build-angular:tslint",
881
- "options": {
882
- "tsConfig": [
883
- "projects/components/widgets/tsconfig.lib.json",
884
- "projects/components/widgets/tsconfig.spec.json"
885
- ],
886
- "exclude": [
887
- "**/node_modules/**"
888
- ]
889
- }
890
687
  }
891
688
  }
892
689
  },
@@ -900,25 +697,13 @@
900
697
  "builder": "@angular-devkit/build-angular:ng-packagr",
901
698
  "options": {
902
699
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
903
- "project": "projects/components/widgets/data/live-table/package.json"
700
+ "project": "projects/components/widgets/data/live-table/ng-package.json"
904
701
  },
905
702
  "configurations": {
906
703
  "production": {
907
704
  "tsConfig": "projects/components/widgets/data/live-table/tsconfig.lib.prod.json"
908
705
  }
909
706
  }
910
- },
911
- "lint": {
912
- "builder": "@angular-devkit/build-angular:tslint",
913
- "options": {
914
- "tsConfig": [
915
- "projects/components/widgets/tsconfig.lib.json",
916
- "projects/components/widgets/tsconfig.spec.json"
917
- ],
918
- "exclude": [
919
- "**/node_modules/**"
920
- ]
921
- }
922
707
  }
923
708
  }
924
709
  },
@@ -932,25 +717,13 @@
932
717
  "builder": "@angular-devkit/build-angular:ng-packagr",
933
718
  "options": {
934
719
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
935
- "project": "projects/components/widgets/data/table/package.json"
720
+ "project": "projects/components/widgets/data/table/ng-package.json"
936
721
  },
937
722
  "configurations": {
938
723
  "production": {
939
724
  "tsConfig": "projects/components/widgets/data/table/tsconfig.lib.prod.json"
940
725
  }
941
726
  }
942
- },
943
- "lint": {
944
- "builder": "@angular-devkit/build-angular:tslint",
945
- "options": {
946
- "tsConfig": [
947
- "projects/components/widgets/tsconfig.lib.json",
948
- "projects/components/widgets/tsconfig.spec.json"
949
- ],
950
- "exclude": [
951
- "**/node_modules/**"
952
- ]
953
- }
954
727
  }
955
728
  }
956
729
  },
@@ -964,25 +737,13 @@
964
737
  "builder": "@angular-devkit/build-angular:ng-packagr",
965
738
  "options": {
966
739
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
967
- "project": "projects/components/widgets/chart/package.json"
740
+ "project": "projects/components/widgets/chart/ng-package.json"
968
741
  },
969
742
  "configurations": {
970
743
  "production": {
971
744
  "tsConfig": "projects/components/widgets/chart/tsconfig.lib.prod.json"
972
745
  }
973
746
  }
974
- },
975
- "lint": {
976
- "builder": "@angular-devkit/build-angular:tslint",
977
- "options": {
978
- "tsConfig": [
979
- "projects/components/widgets/tsconfig.lib.json",
980
- "projects/components/widgets/tsconfig.spec.json"
981
- ],
982
- "exclude": [
983
- "**/node_modules/**"
984
- ]
985
- }
986
747
  }
987
748
  }
988
749
  },
@@ -996,25 +757,13 @@
996
757
  "builder": "@angular-devkit/build-angular:ng-packagr",
997
758
  "options": {
998
759
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
999
- "project": "projects/components/widgets/containers/accordion/package.json"
760
+ "project": "projects/components/widgets/containers/accordion/ng-package.json"
1000
761
  },
1001
762
  "configurations": {
1002
763
  "production": {
1003
764
  "tsConfig": "projects/components/widgets/containers/accordion/tsconfig.lib.prod.json"
1004
765
  }
1005
766
  }
1006
- },
1007
- "lint": {
1008
- "builder": "@angular-devkit/build-angular:tslint",
1009
- "options": {
1010
- "tsConfig": [
1011
- "projects/components/widgets/tsconfig.lib.json",
1012
- "projects/components/widgets/tsconfig.spec.json"
1013
- ],
1014
- "exclude": [
1015
- "**/node_modules/**"
1016
- ]
1017
- }
1018
767
  }
1019
768
  }
1020
769
  },
@@ -1028,25 +777,13 @@
1028
777
  "builder": "@angular-devkit/build-angular:ng-packagr",
1029
778
  "options": {
1030
779
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1031
- "project": "projects/components/widgets/containers/layout-grid/package.json"
780
+ "project": "projects/components/widgets/containers/layout-grid/ng-package.json"
1032
781
  },
1033
782
  "configurations": {
1034
783
  "production": {
1035
784
  "tsConfig": "projects/components/widgets/containers/layout-grid/tsconfig.lib.prod.json"
1036
785
  }
1037
786
  }
1038
- },
1039
- "lint": {
1040
- "builder": "@angular-devkit/build-angular:tslint",
1041
- "options": {
1042
- "tsConfig": [
1043
- "projects/components/widgets/tsconfig.lib.json",
1044
- "projects/components/widgets/tsconfig.spec.json"
1045
- ],
1046
- "exclude": [
1047
- "**/node_modules/**"
1048
- ]
1049
- }
1050
787
  }
1051
788
  }
1052
789
  },
@@ -1060,25 +797,13 @@
1060
797
  "builder": "@angular-devkit/build-angular:ng-packagr",
1061
798
  "options": {
1062
799
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1063
- "project": "projects/components/widgets/containers/linear-layout/package.json"
800
+ "project": "projects/components/widgets/containers/linear-layout/ng-package.json"
1064
801
  },
1065
802
  "configurations": {
1066
803
  "production": {
1067
804
  "tsConfig": "projects/components/widgets/containers/linear-layout/tsconfig.lib.prod.json"
1068
805
  }
1069
806
  }
1070
- },
1071
- "lint": {
1072
- "builder": "@angular-devkit/build-angular:tslint",
1073
- "options": {
1074
- "tsConfig": [
1075
- "projects/components/widgets/tsconfig.lib.json",
1076
- "projects/components/widgets/tsconfig.spec.json"
1077
- ],
1078
- "exclude": [
1079
- "**/node_modules/**"
1080
- ]
1081
- }
1082
807
  }
1083
808
  }
1084
809
  },
@@ -1092,25 +817,13 @@
1092
817
  "builder": "@angular-devkit/build-angular:ng-packagr",
1093
818
  "options": {
1094
819
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1095
- "project": "projects/components/widgets/containers/panel/package.json"
820
+ "project": "projects/components/widgets/containers/panel/ng-package.json"
1096
821
  },
1097
822
  "configurations": {
1098
823
  "production": {
1099
824
  "tsConfig": "projects/components/widgets/containers/panel/tsconfig.lib.prod.json"
1100
825
  }
1101
826
  }
1102
- },
1103
- "lint": {
1104
- "builder": "@angular-devkit/build-angular:tslint",
1105
- "options": {
1106
- "tsConfig": [
1107
- "projects/components/widgets/tsconfig.lib.json",
1108
- "projects/components/widgets/tsconfig.spec.json"
1109
- ],
1110
- "exclude": [
1111
- "**/node_modules/**"
1112
- ]
1113
- }
1114
827
  }
1115
828
  }
1116
829
  },
@@ -1124,25 +837,13 @@
1124
837
  "builder": "@angular-devkit/build-angular:ng-packagr",
1125
838
  "options": {
1126
839
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1127
- "project": "projects/components/widgets/containers/tabs/package.json"
840
+ "project": "projects/components/widgets/containers/tabs/ng-package.json"
1128
841
  },
1129
842
  "configurations": {
1130
843
  "production": {
1131
844
  "tsConfig": "projects/components/widgets/containers/tabs/tsconfig.lib.prod.json"
1132
845
  }
1133
846
  }
1134
- },
1135
- "lint": {
1136
- "builder": "@angular-devkit/build-angular:tslint",
1137
- "options": {
1138
- "tsConfig": [
1139
- "projects/components/widgets/tsconfig.lib.json",
1140
- "projects/components/widgets/tsconfig.spec.json"
1141
- ],
1142
- "exclude": [
1143
- "**/node_modules/**"
1144
- ]
1145
- }
1146
847
  }
1147
848
  }
1148
849
  },
@@ -1156,25 +857,13 @@
1156
857
  "builder": "@angular-devkit/build-angular:ng-packagr",
1157
858
  "options": {
1158
859
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1159
- "project": "projects/components/widgets/containers/tile/package.json"
860
+ "project": "projects/components/widgets/containers/tile/ng-package.json"
1160
861
  },
1161
862
  "configurations": {
1162
863
  "production": {
1163
864
  "tsConfig": "projects/components/widgets/containers/tile/tsconfig.lib.prod.json"
1164
865
  }
1165
866
  }
1166
- },
1167
- "lint": {
1168
- "builder": "@angular-devkit/build-angular:tslint",
1169
- "options": {
1170
- "tsConfig": [
1171
- "projects/components/widgets/tsconfig.lib.json",
1172
- "projects/components/widgets/tsconfig.spec.json"
1173
- ],
1174
- "exclude": [
1175
- "**/node_modules/**"
1176
- ]
1177
- }
1178
867
  }
1179
868
  }
1180
869
  },
@@ -1188,25 +877,13 @@
1188
877
  "builder": "@angular-devkit/build-angular:ng-packagr",
1189
878
  "options": {
1190
879
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1191
- "project": "projects/components/widgets/containers/wizard/package.json"
880
+ "project": "projects/components/widgets/containers/wizard/ng-package.json"
1192
881
  },
1193
882
  "configurations": {
1194
883
  "production": {
1195
884
  "tsConfig": "projects/components/widgets/containers/wizard/tsconfig.lib.prod.json"
1196
885
  }
1197
886
  }
1198
- },
1199
- "lint": {
1200
- "builder": "@angular-devkit/build-angular:tslint",
1201
- "options": {
1202
- "tsConfig": [
1203
- "projects/components/widgets/tsconfig.lib.json",
1204
- "projects/components/widgets/tsconfig.spec.json"
1205
- ],
1206
- "exclude": [
1207
- "**/node_modules/**"
1208
- ]
1209
- }
1210
887
  }
1211
888
  }
1212
889
  },
@@ -1220,25 +897,13 @@
1220
897
  "builder": "@angular-devkit/build-angular:ng-packagr",
1221
898
  "options": {
1222
899
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1223
- "project": "projects/components/widgets/navigation/breadcrumb/package.json"
900
+ "project": "projects/components/widgets/navigation/breadcrumb/ng-package.json"
1224
901
  },
1225
902
  "configurations": {
1226
903
  "production": {
1227
904
  "tsConfig": "projects/components/widgets/navigation/breadcrumb/tsconfig.lib.prod.json"
1228
905
  }
1229
906
  }
1230
- },
1231
- "lint": {
1232
- "builder": "@angular-devkit/build-angular:tslint",
1233
- "options": {
1234
- "tsConfig": [
1235
- "projects/components/widgets/tsconfig.lib.json",
1236
- "projects/components/widgets/tsconfig.spec.json"
1237
- ],
1238
- "exclude": [
1239
- "**/node_modules/**"
1240
- ]
1241
- }
1242
907
  }
1243
908
  }
1244
909
  },
@@ -1252,25 +917,13 @@
1252
917
  "builder": "@angular-devkit/build-angular:ng-packagr",
1253
918
  "options": {
1254
919
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1255
- "project": "projects/components/widgets/navigation/menu/package.json"
920
+ "project": "projects/components/widgets/navigation/menu/ng-package.json"
1256
921
  },
1257
922
  "configurations": {
1258
923
  "production": {
1259
924
  "tsConfig": "projects/components/widgets/navigation/menu/tsconfig.lib.prod.json"
1260
925
  }
1261
926
  }
1262
- },
1263
- "lint": {
1264
- "builder": "@angular-devkit/build-angular:tslint",
1265
- "options": {
1266
- "tsConfig": [
1267
- "projects/components/widgets/tsconfig.lib.json",
1268
- "projects/components/widgets/tsconfig.spec.json"
1269
- ],
1270
- "exclude": [
1271
- "**/node_modules/**"
1272
- ]
1273
- }
1274
927
  }
1275
928
  }
1276
929
  },
@@ -1284,25 +937,13 @@
1284
937
  "builder": "@angular-devkit/build-angular:ng-packagr",
1285
938
  "options": {
1286
939
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1287
- "project": "projects/components/widgets/navigation/navbar/package.json"
940
+ "project": "projects/components/widgets/navigation/navbar/ng-package.json"
1288
941
  },
1289
942
  "configurations": {
1290
943
  "production": {
1291
944
  "tsConfig": "projects/components/widgets/navigation/navbar/tsconfig.lib.prod.json"
1292
945
  }
1293
946
  }
1294
- },
1295
- "lint": {
1296
- "builder": "@angular-devkit/build-angular:tslint",
1297
- "options": {
1298
- "tsConfig": [
1299
- "projects/components/widgets/tsconfig.lib.json",
1300
- "projects/components/widgets/tsconfig.spec.json"
1301
- ],
1302
- "exclude": [
1303
- "**/node_modules/**"
1304
- ]
1305
- }
1306
947
  }
1307
948
  }
1308
949
  },
@@ -1316,25 +957,13 @@
1316
957
  "builder": "@angular-devkit/build-angular:ng-packagr",
1317
958
  "options": {
1318
959
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1319
- "project": "projects/components/widgets/navigation/popover/package.json"
960
+ "project": "projects/components/widgets/navigation/popover/ng-package.json"
1320
961
  },
1321
962
  "configurations": {
1322
963
  "production": {
1323
964
  "tsConfig": "projects/components/widgets/navigation/popover/tsconfig.lib.prod.json"
1324
965
  }
1325
966
  }
1326
- },
1327
- "lint": {
1328
- "builder": "@angular-devkit/build-angular:tslint",
1329
- "options": {
1330
- "tsConfig": [
1331
- "projects/components/widgets/tsconfig.lib.json",
1332
- "projects/components/widgets/tsconfig.spec.json"
1333
- ],
1334
- "exclude": [
1335
- "**/node_modules/**"
1336
- ]
1337
- }
1338
967
  }
1339
968
  }
1340
969
  },
@@ -1348,25 +977,13 @@
1348
977
  "builder": "@angular-devkit/build-angular:ng-packagr",
1349
978
  "options": {
1350
979
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1351
- "project": "projects/components/widgets/dialogs/default/package.json"
980
+ "project": "projects/components/widgets/dialogs/default/ng-package.json"
1352
981
  },
1353
982
  "configurations": {
1354
983
  "production": {
1355
984
  "tsConfig": "projects/components/widgets/dialogs/default/tsconfig.lib.prod.json"
1356
985
  }
1357
986
  }
1358
- },
1359
- "lint": {
1360
- "builder": "@angular-devkit/build-angular:tslint",
1361
- "options": {
1362
- "tsConfig": [
1363
- "projects/components/widgets/tsconfig.lib.json",
1364
- "projects/components/widgets/tsconfig.spec.json"
1365
- ],
1366
- "exclude": [
1367
- "**/node_modules/**"
1368
- ]
1369
- }
1370
987
  }
1371
988
  }
1372
989
  },
@@ -1380,25 +997,13 @@
1380
997
  "builder": "@angular-devkit/build-angular:ng-packagr",
1381
998
  "options": {
1382
999
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1383
- "project": "projects/components/widgets/dialogs/alert-dialog/package.json"
1000
+ "project": "projects/components/widgets/dialogs/alert-dialog/ng-package.json"
1384
1001
  },
1385
1002
  "configurations": {
1386
1003
  "production": {
1387
1004
  "tsConfig": "projects/components/widgets/dialogs/alert-dialog/tsconfig.lib.prod.json"
1388
1005
  }
1389
1006
  }
1390
- },
1391
- "lint": {
1392
- "builder": "@angular-devkit/build-angular:tslint",
1393
- "options": {
1394
- "tsConfig": [
1395
- "projects/components/widgets/tsconfig.lib.json",
1396
- "projects/components/widgets/tsconfig.spec.json"
1397
- ],
1398
- "exclude": [
1399
- "**/node_modules/**"
1400
- ]
1401
- }
1402
1007
  }
1403
1008
  }
1404
1009
  },
@@ -1412,25 +1017,13 @@
1412
1017
  "builder": "@angular-devkit/build-angular:ng-packagr",
1413
1018
  "options": {
1414
1019
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1415
- "project": "projects/components/widgets/dialogs/confirm-dialog/package.json"
1020
+ "project": "projects/components/widgets/dialogs/confirm-dialog/ng-package.json"
1416
1021
  },
1417
1022
  "configurations": {
1418
1023
  "production": {
1419
1024
  "tsConfig": "projects/components/widgets/dialogs/confirm-dialog/tsconfig.lib.prod.json"
1420
1025
  }
1421
1026
  }
1422
- },
1423
- "lint": {
1424
- "builder": "@angular-devkit/build-angular:tslint",
1425
- "options": {
1426
- "tsConfig": [
1427
- "projects/components/widgets/tsconfig.lib.json",
1428
- "projects/components/widgets/tsconfig.spec.json"
1429
- ],
1430
- "exclude": [
1431
- "**/node_modules/**"
1432
- ]
1433
- }
1434
1027
  }
1435
1028
  }
1436
1029
  },
@@ -1444,25 +1037,13 @@
1444
1037
  "builder": "@angular-devkit/build-angular:ng-packagr",
1445
1038
  "options": {
1446
1039
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1447
- "project": "projects/components/widgets/dialogs/design-dialog/package.json"
1040
+ "project": "projects/components/widgets/dialogs/design-dialog/ng-package.json"
1448
1041
  },
1449
1042
  "configurations": {
1450
1043
  "production": {
1451
1044
  "tsConfig": "projects/components/widgets/dialogs/design-dialog/tsconfig.lib.prod.json"
1452
1045
  }
1453
1046
  }
1454
- },
1455
- "lint": {
1456
- "builder": "@angular-devkit/build-angular:tslint",
1457
- "options": {
1458
- "tsConfig": [
1459
- "projects/components/widgets/tsconfig.lib.json",
1460
- "projects/components/widgets/tsconfig.spec.json"
1461
- ],
1462
- "exclude": [
1463
- "**/node_modules/**"
1464
- ]
1465
- }
1466
1047
  }
1467
1048
  }
1468
1049
  },
@@ -1476,25 +1057,13 @@
1476
1057
  "builder": "@angular-devkit/build-angular:ng-packagr",
1477
1058
  "options": {
1478
1059
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1479
- "project": "projects/components/widgets/dialogs/iframe-dialog/package.json"
1060
+ "project": "projects/components/widgets/dialogs/iframe-dialog/ng-package.json"
1480
1061
  },
1481
1062
  "configurations": {
1482
1063
  "production": {
1483
1064
  "tsConfig": "projects/components/widgets/dialogs/iframe-dialog/tsconfig.lib.prod.json"
1484
1065
  }
1485
1066
  }
1486
- },
1487
- "lint": {
1488
- "builder": "@angular-devkit/build-angular:tslint",
1489
- "options": {
1490
- "tsConfig": [
1491
- "projects/components/widgets/tsconfig.lib.json",
1492
- "projects/components/widgets/tsconfig.spec.json"
1493
- ],
1494
- "exclude": [
1495
- "**/node_modules/**"
1496
- ]
1497
- }
1498
1067
  }
1499
1068
  }
1500
1069
  },
@@ -1508,25 +1077,13 @@
1508
1077
  "builder": "@angular-devkit/build-angular:ng-packagr",
1509
1078
  "options": {
1510
1079
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1511
- "project": "projects/components/widgets/dialogs/login-dialog/package.json"
1080
+ "project": "projects/components/widgets/dialogs/login-dialog/ng-package.json"
1512
1081
  },
1513
1082
  "configurations": {
1514
1083
  "production": {
1515
1084
  "tsConfig": "projects/components/widgets/dialogs/login-dialog/tsconfig.lib.prod.json"
1516
1085
  }
1517
1086
  }
1518
- },
1519
- "lint": {
1520
- "builder": "@angular-devkit/build-angular:tslint",
1521
- "options": {
1522
- "tsConfig": [
1523
- "projects/components/widgets/tsconfig.lib.json",
1524
- "projects/components/widgets/tsconfig.spec.json"
1525
- ],
1526
- "exclude": [
1527
- "**/node_modules/**"
1528
- ]
1529
- }
1530
1087
  }
1531
1088
  }
1532
1089
  },
@@ -1540,25 +1097,13 @@
1540
1097
  "builder": "@angular-devkit/build-angular:ng-packagr",
1541
1098
  "options": {
1542
1099
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1543
- "project": "projects/components/widgets/dialogs/partial-dialog/package.json"
1100
+ "project": "projects/components/widgets/dialogs/partial-dialog/ng-package.json"
1544
1101
  },
1545
1102
  "configurations": {
1546
1103
  "production": {
1547
1104
  "tsConfig": "projects/components/widgets/dialogs/partial-dialog/tsconfig.lib.prod.json"
1548
1105
  }
1549
1106
  }
1550
- },
1551
- "lint": {
1552
- "builder": "@angular-devkit/build-angular:tslint",
1553
- "options": {
1554
- "tsConfig": [
1555
- "projects/components/widgets/tsconfig.lib.json",
1556
- "projects/components/widgets/tsconfig.spec.json"
1557
- ],
1558
- "exclude": [
1559
- "**/node_modules/**"
1560
- ]
1561
- }
1562
1107
  }
1563
1108
  }
1564
1109
  },
@@ -1572,25 +1117,13 @@
1572
1117
  "builder": "@angular-devkit/build-angular:ng-packagr",
1573
1118
  "options": {
1574
1119
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1575
- "project": "projects/components/widgets/advanced/carousel/package.json"
1120
+ "project": "projects/components/widgets/advanced/carousel/ng-package.json"
1576
1121
  },
1577
1122
  "configurations": {
1578
1123
  "production": {
1579
1124
  "tsConfig": "projects/components/widgets/advanced/carousel/tsconfig.lib.prod.json"
1580
1125
  }
1581
1126
  }
1582
- },
1583
- "lint": {
1584
- "builder": "@angular-devkit/build-angular:tslint",
1585
- "options": {
1586
- "tsConfig": [
1587
- "projects/components/widgets/tsconfig.lib.json",
1588
- "projects/components/widgets/tsconfig.spec.json"
1589
- ],
1590
- "exclude": [
1591
- "**/node_modules/**"
1592
- ]
1593
- }
1594
1127
  }
1595
1128
  }
1596
1129
  },
@@ -1604,25 +1137,13 @@
1604
1137
  "builder": "@angular-devkit/build-angular:ng-packagr",
1605
1138
  "options": {
1606
1139
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1607
- "project": "projects/components/widgets/advanced/marquee/package.json"
1140
+ "project": "projects/components/widgets/advanced/marquee/ng-package.json"
1608
1141
  },
1609
1142
  "configurations": {
1610
1143
  "production": {
1611
1144
  "tsConfig": "projects/components/widgets/advanced/marquee/tsconfig.lib.prod.json"
1612
1145
  }
1613
1146
  }
1614
- },
1615
- "lint": {
1616
- "builder": "@angular-devkit/build-angular:tslint",
1617
- "options": {
1618
- "tsConfig": [
1619
- "projects/components/widgets/tsconfig.lib.json",
1620
- "projects/components/widgets/tsconfig.spec.json"
1621
- ],
1622
- "exclude": [
1623
- "**/node_modules/**"
1624
- ]
1625
- }
1626
1147
  }
1627
1148
  }
1628
1149
  },
@@ -1636,25 +1157,13 @@
1636
1157
  "builder": "@angular-devkit/build-angular:ng-packagr",
1637
1158
  "options": {
1638
1159
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1639
- "project": "projects/components/widgets/advanced/login/package.json"
1160
+ "project": "projects/components/widgets/advanced/login/ng-package.json"
1640
1161
  },
1641
1162
  "configurations": {
1642
1163
  "production": {
1643
1164
  "tsConfig": "projects/components/widgets/advanced/login/tsconfig.lib.prod.json"
1644
1165
  }
1645
1166
  }
1646
- },
1647
- "lint": {
1648
- "builder": "@angular-devkit/build-angular:tslint",
1649
- "options": {
1650
- "tsConfig": [
1651
- "projects/components/widgets/tsconfig.lib.json",
1652
- "projects/components/widgets/tsconfig.spec.json"
1653
- ],
1654
- "exclude": [
1655
- "**/node_modules/**"
1656
- ]
1657
- }
1658
1167
  }
1659
1168
  }
1660
1169
  },
@@ -1668,25 +1177,13 @@
1668
1177
  "builder": "@angular-devkit/build-angular:ng-packagr",
1669
1178
  "options": {
1670
1179
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1671
- "project": "projects/components/widgets/page/default/package.json"
1180
+ "project": "projects/components/widgets/page/default/ng-package.json"
1672
1181
  },
1673
1182
  "configurations": {
1674
1183
  "production": {
1675
1184
  "tsConfig": "projects/components/widgets/page/default/tsconfig.lib.prod.json"
1676
1185
  }
1677
1186
  }
1678
- },
1679
- "lint": {
1680
- "builder": "@angular-devkit/build-angular:tslint",
1681
- "options": {
1682
- "tsConfig": [
1683
- "projects/components/widgets/tsconfig.lib.json",
1684
- "projects/components/widgets/tsconfig.spec.json"
1685
- ],
1686
- "exclude": [
1687
- "**/node_modules/**"
1688
- ]
1689
- }
1690
1187
  }
1691
1188
  }
1692
1189
  },
@@ -1700,25 +1197,13 @@
1700
1197
  "builder": "@angular-devkit/build-angular:ng-packagr",
1701
1198
  "options": {
1702
1199
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1703
- "project": "projects/components/widgets/page/footer/package.json"
1200
+ "project": "projects/components/widgets/page/footer/ng-package.json"
1704
1201
  },
1705
1202
  "configurations": {
1706
1203
  "production": {
1707
1204
  "tsConfig": "projects/components/widgets/page/footer/tsconfig.lib.prod.json"
1708
1205
  }
1709
1206
  }
1710
- },
1711
- "lint": {
1712
- "builder": "@angular-devkit/build-angular:tslint",
1713
- "options": {
1714
- "tsConfig": [
1715
- "projects/components/widgets/tsconfig.lib.json",
1716
- "projects/components/widgets/tsconfig.spec.json"
1717
- ],
1718
- "exclude": [
1719
- "**/node_modules/**"
1720
- ]
1721
- }
1722
1207
  }
1723
1208
  }
1724
1209
  },
@@ -1732,25 +1217,13 @@
1732
1217
  "builder": "@angular-devkit/build-angular:ng-packagr",
1733
1218
  "options": {
1734
1219
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1735
- "project": "projects/components/widgets/page/header/package.json"
1220
+ "project": "projects/components/widgets/page/header/ng-package.json"
1736
1221
  },
1737
1222
  "configurations": {
1738
1223
  "production": {
1739
1224
  "tsConfig": "projects/components/widgets/page/header/tsconfig.lib.prod.json"
1740
1225
  }
1741
1226
  }
1742
- },
1743
- "lint": {
1744
- "builder": "@angular-devkit/build-angular:tslint",
1745
- "options": {
1746
- "tsConfig": [
1747
- "projects/components/widgets/tsconfig.lib.json",
1748
- "projects/components/widgets/tsconfig.spec.json"
1749
- ],
1750
- "exclude": [
1751
- "**/node_modules/**"
1752
- ]
1753
- }
1754
1227
  }
1755
1228
  }
1756
1229
  },
@@ -1764,25 +1237,13 @@
1764
1237
  "builder": "@angular-devkit/build-angular:ng-packagr",
1765
1238
  "options": {
1766
1239
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1767
- "project": "projects/components/widgets/page/left-panel/package.json"
1240
+ "project": "projects/components/widgets/page/left-panel/ng-package.json"
1768
1241
  },
1769
1242
  "configurations": {
1770
1243
  "production": {
1771
1244
  "tsConfig": "projects/components/widgets/page/left-panel/tsconfig.lib.prod.json"
1772
1245
  }
1773
1246
  }
1774
- },
1775
- "lint": {
1776
- "builder": "@angular-devkit/build-angular:tslint",
1777
- "options": {
1778
- "tsConfig": [
1779
- "projects/components/widgets/tsconfig.lib.json",
1780
- "projects/components/widgets/tsconfig.spec.json"
1781
- ],
1782
- "exclude": [
1783
- "**/node_modules/**"
1784
- ]
1785
- }
1786
1247
  }
1787
1248
  }
1788
1249
  },
@@ -1796,25 +1257,13 @@
1796
1257
  "builder": "@angular-devkit/build-angular:ng-packagr",
1797
1258
  "options": {
1798
1259
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1799
- "project": "projects/components/widgets/page/right-panel/package.json"
1260
+ "project": "projects/components/widgets/page/right-panel/ng-package.json"
1800
1261
  },
1801
1262
  "configurations": {
1802
1263
  "production": {
1803
1264
  "tsConfig": "projects/components/widgets/page/right-panel/tsconfig.lib.prod.json"
1804
1265
  }
1805
1266
  }
1806
- },
1807
- "lint": {
1808
- "builder": "@angular-devkit/build-angular:tslint",
1809
- "options": {
1810
- "tsConfig": [
1811
- "projects/components/widgets/tsconfig.lib.json",
1812
- "projects/components/widgets/tsconfig.spec.json"
1813
- ],
1814
- "exclude": [
1815
- "**/node_modules/**"
1816
- ]
1817
- }
1818
1267
  }
1819
1268
  }
1820
1269
  },
@@ -1828,25 +1277,13 @@
1828
1277
  "builder": "@angular-devkit/build-angular:ng-packagr",
1829
1278
  "options": {
1830
1279
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1831
- "project": "projects/components/widgets/page/top-nav/package.json"
1280
+ "project": "projects/components/widgets/page/top-nav/ng-package.json"
1832
1281
  },
1833
1282
  "configurations": {
1834
1283
  "production": {
1835
1284
  "tsConfig": "projects/components/widgets/page/top-nav/tsconfig.lib.prod.json"
1836
1285
  }
1837
1286
  }
1838
- },
1839
- "lint": {
1840
- "builder": "@angular-devkit/build-angular:tslint",
1841
- "options": {
1842
- "tsConfig": [
1843
- "projects/components/widgets/tsconfig.lib.json",
1844
- "projects/components/widgets/tsconfig.spec.json"
1845
- ],
1846
- "exclude": [
1847
- "**/node_modules/**"
1848
- ]
1849
- }
1850
1287
  }
1851
1288
  }
1852
1289
  },
@@ -1860,25 +1297,13 @@
1860
1297
  "builder": "@angular-devkit/build-angular:ng-packagr",
1861
1298
  "options": {
1862
1299
  "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1863
- "project": "projects/components/widgets/prefab/package.json"
1300
+ "project": "projects/components/widgets/prefab/ng-package.json"
1864
1301
  },
1865
1302
  "configurations": {
1866
1303
  "production": {
1867
1304
  "tsConfig": "projects/components/widgets/prefab/tsconfig.lib.prod.json"
1868
1305
  }
1869
1306
  }
1870
- },
1871
- "lint": {
1872
- "builder": "@angular-devkit/build-angular:tslint",
1873
- "options": {
1874
- "tsConfig": [
1875
- "projects/components/widgets/tsconfig.lib.json",
1876
- "projects/components/widgets/tsconfig.spec.json"
1877
- ],
1878
- "exclude": [
1879
- "**/node_modules/**"
1880
- ]
1881
- }
1882
1307
  }
1883
1308
  }
1884
1309
  },
@@ -1899,18 +1324,6 @@
1899
1324
  "tsConfig": "projects/transpiler/tsconfig.lib.prod.json"
1900
1325
  }
1901
1326
  }
1902
- },
1903
- "lint": {
1904
- "builder": "@angular-devkit/build-angular:tslint",
1905
- "options": {
1906
- "tsConfig": [
1907
- "projects/transpiler/tsconfig.lib.json",
1908
- "projects/transpiler/tsconfig.spec.json"
1909
- ],
1910
- "exclude": [
1911
- "**/node_modules/**"
1912
- ]
1913
- }
1914
1327
  }
1915
1328
  }
1916
1329
  },
@@ -1931,18 +1344,6 @@
1931
1344
  "tsConfig": "projects/security/tsconfig.lib.prod.json"
1932
1345
  }
1933
1346
  }
1934
- },
1935
- "lint": {
1936
- "builder": "@angular-devkit/build-angular:tslint",
1937
- "options": {
1938
- "tsConfig": [
1939
- "projects/security/tsconfig.lib.json",
1940
- "projects/security/tsconfig.spec.json"
1941
- ],
1942
- "exclude": [
1943
- "**/node_modules/**"
1944
- ]
1945
- }
1946
1347
  }
1947
1348
  }
1948
1349
  },
@@ -1963,18 +1364,6 @@
1963
1364
  "tsConfig": "projects/swipey/tsconfig.lib.prod.json"
1964
1365
  }
1965
1366
  }
1966
- },
1967
- "lint": {
1968
- "builder": "@angular-devkit/build-angular:tslint",
1969
- "options": {
1970
- "tsConfig": [
1971
- "projects/swipey/tsconfig.lib.json",
1972
- "projects/swipey/tsconfig.spec.json"
1973
- ],
1974
- "exclude": [
1975
- "**/node_modules/**"
1976
- ]
1977
- }
1978
1367
  }
1979
1368
  }
1980
1369
  },
@@ -1995,18 +1384,6 @@
1995
1384
  "tsConfig": "projects/http-service/tsconfig.lib.prod.json"
1996
1385
  }
1997
1386
  }
1998
- },
1999
- "lint": {
2000
- "builder": "@angular-devkit/build-angular:tslint",
2001
- "options": {
2002
- "tsConfig": [
2003
- "projects/http-service/tsconfig.lib.json",
2004
- "projects/http-service/tsconfig.spec.json"
2005
- ],
2006
- "exclude": [
2007
- "**/node_modules/**"
2008
- ]
2009
- }
2010
1387
  }
2011
1388
  }
2012
1389
  },
@@ -2027,18 +1404,6 @@
2027
1404
  "tsConfig": "projects/oAuth/tsconfig.lib.prod.json"
2028
1405
  }
2029
1406
  }
2030
- },
2031
- "lint": {
2032
- "builder": "@angular-devkit/build-angular:tslint",
2033
- "options": {
2034
- "tsConfig": [
2035
- "projects/oAuth/tsconfig.lib.json",
2036
- "projects/oAuth/tsconfig.spec.json"
2037
- ],
2038
- "exclude": [
2039
- "**/node_modules/**"
2040
- ]
2041
- }
2042
1407
  }
2043
1408
  }
2044
1409
  },
@@ -2073,18 +1438,6 @@
2073
1438
  "scripts": [],
2074
1439
  "assets": []
2075
1440
  }
2076
- },
2077
- "lint": {
2078
- "builder": "@angular-devkit/build-angular:tslint",
2079
- "options": {
2080
- "tsConfig": [
2081
- "projects/variables/tsconfig.lib.json",
2082
- "projects/variables/tsconfig.spec.json"
2083
- ],
2084
- "exclude": [
2085
- "**/node_modules/**"
2086
- ]
2087
- }
2088
1441
  }
2089
1442
  }
2090
1443
  },
@@ -2105,18 +1458,6 @@
2105
1458
  "tsConfig": "projects/mobile/core/tsconfig.lib.prod.json"
2106
1459
  }
2107
1460
  }
2108
- },
2109
- "lint": {
2110
- "builder": "@angular-devkit/build-angular:tslint",
2111
- "options": {
2112
- "tsConfig": [
2113
- "projects/mobile/core/tsconfig.lib.json",
2114
- "projects/mobile/core/tsconfig.spec.json"
2115
- ],
2116
- "exclude": [
2117
- "**/node_modules/**"
2118
- ]
2119
- }
2120
1461
  }
2121
1462
  }
2122
1463
  },
@@ -2130,7 +1471,7 @@
2130
1471
  "builder": "@angular-devkit/build-angular:ng-packagr",
2131
1472
  "options": {
2132
1473
  "tsConfig": "projects/mobile/components/tsconfig.lib.json",
2133
- "project": "projects/mobile/components/basic/default/package.json"
1474
+ "project": "projects/mobile/components/basic/default/ng-package.json"
2134
1475
  },
2135
1476
  "configurations": {
2136
1477
  "production": {
@@ -2151,18 +1492,6 @@
2151
1492
  "scripts": [],
2152
1493
  "assets": []
2153
1494
  }
2154
- },
2155
- "lint": {
2156
- "builder": "@angular-devkit/build-angular:tslint",
2157
- "options": {
2158
- "tsConfig": [
2159
- "projects/mobile/components/tsconfig.lib.json",
2160
- "projects/mobile/components/tsconfig.spec.json"
2161
- ],
2162
- "exclude": [
2163
- "**/node_modules/**"
2164
- ]
2165
- }
2166
1495
  }
2167
1496
  }
2168
1497
  },
@@ -2176,25 +1505,13 @@
2176
1505
  "builder": "@angular-devkit/build-angular:ng-packagr",
2177
1506
  "options": {
2178
1507
  "tsConfig": "projects/mobile/components/tsconfig.lib.json",
2179
- "project": "projects/mobile/components/basic/search/package.json"
1508
+ "project": "projects/mobile/components/basic/search/ng-package.json"
2180
1509
  },
2181
1510
  "configurations": {
2182
1511
  "production": {
2183
1512
  "tsConfig": "projects/mobile/components/basic/search/tsconfig.lib.prod.json"
2184
1513
  }
2185
1514
  }
2186
- },
2187
- "lint": {
2188
- "builder": "@angular-devkit/build-angular:tslint",
2189
- "options": {
2190
- "tsConfig": [
2191
- "projects/mobile/components/tsconfig.lib.json",
2192
- "projects/mobile/components/tsconfig.spec.json"
2193
- ],
2194
- "exclude": [
2195
- "**/node_modules/**"
2196
- ]
2197
- }
2198
1515
  }
2199
1516
  }
2200
1517
  },
@@ -2208,25 +1525,13 @@
2208
1525
  "builder": "@angular-devkit/build-angular:ng-packagr",
2209
1526
  "options": {
2210
1527
  "tsConfig": "projects/mobile/components/tsconfig.lib.json",
2211
- "project": "projects/mobile/components/containers/segmented-control/package.json"
1528
+ "project": "projects/mobile/components/containers/segmented-control/ng-package.json"
2212
1529
  },
2213
1530
  "configurations": {
2214
1531
  "production": {
2215
1532
  "tsConfig": "projects/mobile/components/containers/segmented-control/tsconfig.lib.prod.json"
2216
1533
  }
2217
1534
  }
2218
- },
2219
- "lint": {
2220
- "builder": "@angular-devkit/build-angular:tslint",
2221
- "options": {
2222
- "tsConfig": [
2223
- "projects/mobile/components/tsconfig.lib.json",
2224
- "projects/mobile/components/tsconfig.spec.json"
2225
- ],
2226
- "exclude": [
2227
- "**/node_modules/**"
2228
- ]
2229
- }
2230
1535
  }
2231
1536
  }
2232
1537
  },
@@ -2240,7 +1545,7 @@
2240
1545
  "builder": "@angular-devkit/build-angular:ng-packagr",
2241
1546
  "options": {
2242
1547
  "tsConfig": "projects/mobile/components/tsconfig.lib.json",
2243
- "project": "projects/mobile/components/data/media-list/package.json"
1548
+ "project": "projects/mobile/components/data/media-list/ng-package.json"
2244
1549
  },
2245
1550
  "configurations": {
2246
1551
  "production": {
@@ -2259,18 +1564,6 @@
2259
1564
  "scripts": [],
2260
1565
  "assets": []
2261
1566
  }
2262
- },
2263
- "lint": {
2264
- "builder": "@angular-devkit/build-angular:tslint",
2265
- "options": {
2266
- "tsConfig": [
2267
- "projects/mobile/components/tsconfig.lib.json",
2268
- "projects/mobile/components/tsconfig.spec.json"
2269
- ],
2270
- "exclude": [
2271
- "**/node_modules/**"
2272
- ]
2273
- }
2274
1567
  }
2275
1568
  }
2276
1569
  },
@@ -2284,25 +1577,13 @@
2284
1577
  "builder": "@angular-devkit/build-angular:ng-packagr",
2285
1578
  "options": {
2286
1579
  "tsConfig": "projects/mobile/components/tsconfig.lib.json",
2287
- "project": "projects/mobile/components/device/barcode-scanner/package.json"
1580
+ "project": "projects/mobile/components/device/barcode-scanner/ng-package.json"
2288
1581
  },
2289
1582
  "configurations": {
2290
1583
  "production": {
2291
1584
  "tsConfig": "projects/mobile/components/device/barcode-scanner/tsconfig.lib.prod.json"
2292
1585
  }
2293
1586
  }
2294
- },
2295
- "lint": {
2296
- "builder": "@angular-devkit/build-angular:tslint",
2297
- "options": {
2298
- "tsConfig": [
2299
- "projects/mobile/components/tsconfig.lib.json",
2300
- "projects/mobile/components/tsconfig.spec.json"
2301
- ],
2302
- "exclude": [
2303
- "**/node_modules/**"
2304
- ]
2305
- }
2306
1587
  }
2307
1588
  }
2308
1589
  },
@@ -2316,25 +1597,13 @@
2316
1597
  "builder": "@angular-devkit/build-angular:ng-packagr",
2317
1598
  "options": {
2318
1599
  "tsConfig": "projects/mobile/components/tsconfig.lib.json",
2319
- "project": "projects/mobile/components/device/camera/package.json"
1600
+ "project": "projects/mobile/components/device/camera/ng-package.json"
2320
1601
  },
2321
1602
  "configurations": {
2322
1603
  "production": {
2323
1604
  "tsConfig": "projects/mobile/components/device/camera/tsconfig.lib.prod.json"
2324
1605
  }
2325
1606
  }
2326
- },
2327
- "lint": {
2328
- "builder": "@angular-devkit/build-angular:tslint",
2329
- "options": {
2330
- "tsConfig": [
2331
- "projects/mobile/components/tsconfig.lib.json",
2332
- "projects/mobile/components/tsconfig.spec.json"
2333
- ],
2334
- "exclude": [
2335
- "**/node_modules/**"
2336
- ]
2337
- }
2338
1607
  }
2339
1608
  }
2340
1609
  },
@@ -2348,25 +1617,13 @@
2348
1617
  "builder": "@angular-devkit/build-angular:ng-packagr",
2349
1618
  "options": {
2350
1619
  "tsConfig": "projects/mobile/components/tsconfig.lib.json",
2351
- "project": "projects/mobile/components/input/file-upload/package.json"
1620
+ "project": "projects/mobile/components/input/file-upload/ng-package.json"
2352
1621
  },
2353
1622
  "configurations": {
2354
1623
  "production": {
2355
1624
  "tsConfig": "projects/mobile/components/input/file-upload/tsconfig.lib.prod.json"
2356
1625
  }
2357
1626
  }
2358
- },
2359
- "lint": {
2360
- "builder": "@angular-devkit/build-angular:tslint",
2361
- "options": {
2362
- "tsConfig": [
2363
- "projects/mobile/components/tsconfig.lib.json",
2364
- "projects/mobile/components/tsconfig.spec.json"
2365
- ],
2366
- "exclude": [
2367
- "**/node_modules/**"
2368
- ]
2369
- }
2370
1627
  }
2371
1628
  }
2372
1629
  },
@@ -2380,25 +1637,13 @@
2380
1637
  "builder": "@angular-devkit/build-angular:ng-packagr",
2381
1638
  "options": {
2382
1639
  "tsConfig": "projects/mobile/components/tsconfig.lib.json",
2383
- "project": "projects/mobile/components/page/default/package.json"
1640
+ "project": "projects/mobile/components/page/default/ng-package.json"
2384
1641
  },
2385
1642
  "configurations": {
2386
1643
  "production": {
2387
1644
  "tsConfig": "projects/mobile/components/page/tsconfig.lib.prod.json"
2388
1645
  }
2389
1646
  }
2390
- },
2391
- "lint": {
2392
- "builder": "@angular-devkit/build-angular:tslint",
2393
- "options": {
2394
- "tsConfig": [
2395
- "projects/mobile/components/tsconfig.lib.json",
2396
- "projects/mobile/components/tsconfig.spec.json"
2397
- ],
2398
- "exclude": [
2399
- "**/node_modules/**"
2400
- ]
2401
- }
2402
1647
  }
2403
1648
  }
2404
1649
  },
@@ -2412,25 +1657,13 @@
2412
1657
  "builder": "@angular-devkit/build-angular:ng-packagr",
2413
1658
  "options": {
2414
1659
  "tsConfig": "projects/mobile/components/tsconfig.lib.json",
2415
- "project": "projects/mobile/components/page/left-panel/package.json"
1660
+ "project": "projects/mobile/components/page/left-panel/ng-package.json"
2416
1661
  },
2417
1662
  "configurations": {
2418
1663
  "production": {
2419
1664
  "tsConfig": "projects/mobile/components/page/left-panel/tsconfig.lib.prod.json"
2420
1665
  }
2421
1666
  }
2422
- },
2423
- "lint": {
2424
- "builder": "@angular-devkit/build-angular:tslint",
2425
- "options": {
2426
- "tsConfig": [
2427
- "projects/mobile/components/tsconfig.lib.json",
2428
- "projects/mobile/components/tsconfig.spec.json"
2429
- ],
2430
- "exclude": [
2431
- "**/node_modules/**"
2432
- ]
2433
- }
2434
1667
  }
2435
1668
  }
2436
1669
  },
@@ -2444,25 +1677,13 @@
2444
1677
  "builder": "@angular-devkit/build-angular:ng-packagr",
2445
1678
  "options": {
2446
1679
  "tsConfig": "projects/mobile/components/tsconfig.lib.json",
2447
- "project": "projects/mobile/components/page/mobile-navbar/package.json"
1680
+ "project": "projects/mobile/components/page/mobile-navbar/ng-package.json"
2448
1681
  },
2449
1682
  "configurations": {
2450
1683
  "production": {
2451
1684
  "tsConfig": "projects/mobile/components/page/mobile-navbar/tsconfig.lib.prod.json"
2452
1685
  }
2453
1686
  }
2454
- },
2455
- "lint": {
2456
- "builder": "@angular-devkit/build-angular:tslint",
2457
- "options": {
2458
- "tsConfig": [
2459
- "projects/mobile/components/tsconfig.lib.json",
2460
- "projects/mobile/components/tsconfig.spec.json"
2461
- ],
2462
- "exclude": [
2463
- "**/node_modules/**"
2464
- ]
2465
- }
2466
1687
  }
2467
1688
  }
2468
1689
  },
@@ -2476,7 +1697,7 @@
2476
1697
  "builder": "@angular-devkit/build-angular:ng-packagr",
2477
1698
  "options": {
2478
1699
  "tsConfig": "projects/mobile/components/tsconfig.lib.json",
2479
- "project": "projects/mobile/components/page/tab-bar/package.json"
1700
+ "project": "projects/mobile/components/page/tab-bar/ng-package.json"
2480
1701
  },
2481
1702
  "configurations": {
2482
1703
  "production": {
@@ -2495,18 +1716,6 @@
2495
1716
  "scripts": [],
2496
1717
  "assets": []
2497
1718
  }
2498
- },
2499
- "lint": {
2500
- "builder": "@angular-devkit/build-angular:tslint",
2501
- "options": {
2502
- "tsConfig": [
2503
- "projects/mobile/components/tsconfig.lib.json",
2504
- "projects/mobile/components/tsconfig.spec.json"
2505
- ],
2506
- "exclude": [
2507
- "**/node_modules/**"
2508
- ]
2509
- }
2510
1719
  }
2511
1720
  }
2512
1721
  },
@@ -2527,18 +1736,6 @@
2527
1736
  "tsConfig": "projects/mobile/offline/tsconfig.lib.prod.json"
2528
1737
  }
2529
1738
  }
2530
- },
2531
- "lint": {
2532
- "builder": "@angular-devkit/build-angular:tslint",
2533
- "options": {
2534
- "tsConfig": [
2535
- "projects/mobile/offline/tsconfig.lib.json",
2536
- "projects/mobile/offline/tsconfig.spec.json"
2537
- ],
2538
- "exclude": [
2539
- "**/node_modules/**"
2540
- ]
2541
- }
2542
1739
  }
2543
1740
  }
2544
1741
  },
@@ -2559,18 +1756,6 @@
2559
1756
  "tsConfig": "projects/mobile/variables/tsconfig.lib.prod.json"
2560
1757
  }
2561
1758
  }
2562
- },
2563
- "lint": {
2564
- "builder": "@angular-devkit/build-angular:tslint",
2565
- "options": {
2566
- "tsConfig": [
2567
- "projects/mobile/variables/tsconfig.lib.json",
2568
- "projects/mobile/variables/tsconfig.spec.json"
2569
- ],
2570
- "exclude": [
2571
- "**/node_modules/**"
2572
- ]
2573
- }
2574
1759
  }
2575
1760
  }
2576
1761
  },
@@ -2591,18 +1776,6 @@
2591
1776
  "tsConfig": "projects/runtime-base/tsconfig.lib.prod.json"
2592
1777
  }
2593
1778
  }
2594
- },
2595
- "lint": {
2596
- "builder": "@angular-devkit/build-angular:tslint",
2597
- "options": {
2598
- "tsConfig": [
2599
- "projects/runtime-base/tsconfig.lib.json",
2600
- "projects/runtime-base/tsconfig.spec.json"
2601
- ],
2602
- "exclude": [
2603
- "**/node_modules/**"
2604
- ]
2605
- }
2606
1779
  }
2607
1780
  }
2608
1781
  },
@@ -2623,18 +1796,6 @@
2623
1796
  "tsConfig": "projects/runtime-dynamic/tsconfig.lib.prod.json"
2624
1797
  }
2625
1798
  }
2626
- },
2627
- "lint": {
2628
- "builder": "@angular-devkit/build-angular:tslint",
2629
- "options": {
2630
- "tsConfig": [
2631
- "projects/runtime-dynamic/tsconfig.lib.json",
2632
- "projects/runtime-dynamic/tsconfig.spec.json"
2633
- ],
2634
- "exclude": [
2635
- "**/node_modules/**"
2636
- ]
2637
- }
2638
1799
  }
2639
1800
  }
2640
1801
  },
@@ -2655,18 +1816,6 @@
2655
1816
  "tsConfig": "projects/mobile/runtime/tsconfig.lib.prod.json"
2656
1817
  }
2657
1818
  }
2658
- },
2659
- "lint": {
2660
- "builder": "@angular-devkit/build-angular:tslint",
2661
- "options": {
2662
- "tsConfig": [
2663
- "projects/mobile/runtime/tsconfig.lib.json",
2664
- "projects/mobile/runtime/tsconfig.spec.json"
2665
- ],
2666
- "exclude": [
2667
- "**/node_modules/**"
2668
- ]
2669
- }
2670
1819
  }
2671
1820
  }
2672
1821
  },
@@ -2680,25 +1829,13 @@
2680
1829
  "builder": "@angular-devkit/build-angular:ng-packagr",
2681
1830
  "options": {
2682
1831
  "tsConfig": "projects/mobile/runtime-dynamic/tsconfig.lib.json",
2683
- "project": "projects/mobile/runtime-dynamic/package.json"
1832
+ "project": "projects/mobile/runtime-dynamic/ng-package.json"
2684
1833
  },
2685
1834
  "configurations": {
2686
1835
  "production": {
2687
1836
  "tsConfig": "projects/mobile/runtime-dynamic/tsconfig.lib.prod.json"
2688
1837
  }
2689
1838
  }
2690
- },
2691
- "lint": {
2692
- "builder": "@angular-devkit/build-angular:tslint",
2693
- "options": {
2694
- "tsConfig": [
2695
- "projects/mobile/runtime/tsconfig.lib.json",
2696
- "projects/mobile/runtime/tsconfig.spec.json"
2697
- ],
2698
- "exclude": [
2699
- "**/node_modules/**"
2700
- ]
2701
- }
2702
1839
  }
2703
1840
  }
2704
1841
  },
@@ -2712,25 +1849,13 @@
2712
1849
  "builder": "@angular-devkit/build-angular:ng-packagr",
2713
1850
  "options": {
2714
1851
  "tsConfig": "projects/mobile/placeholder/tsconfig.lib.json",
2715
- "project": "projects/mobile/placeholder/runtime/package.json"
1852
+ "project": "projects/mobile/placeholder/runtime/ng-package.json"
2716
1853
  },
2717
1854
  "configurations": {
2718
1855
  "production": {
2719
1856
  "tsConfig": "projects/mobile/placeholder/runtime/tsconfig.lib.prod.json"
2720
1857
  }
2721
1858
  }
2722
- },
2723
- "lint": {
2724
- "builder": "@angular-devkit/build-angular:tslint",
2725
- "options": {
2726
- "tsConfig": [
2727
- "projects/mobile/placeholder/tsconfig.lib.json",
2728
- "projects/mobile/placeholder/tsconfig.spec.json"
2729
- ],
2730
- "exclude": [
2731
- "**/node_modules/**"
2732
- ]
2733
- }
2734
1859
  }
2735
1860
  }
2736
1861
  },
@@ -2744,30 +1869,17 @@
2744
1869
  "builder": "@angular-devkit/build-angular:ng-packagr",
2745
1870
  "options": {
2746
1871
  "tsConfig": "projects/mobile/placeholder/tsconfig.lib.json",
2747
- "project": "projects/mobile/placeholder/runtime-dynamic/package.json"
1872
+ "project": "projects/mobile/placeholder/runtime-dynamic/ng-package.json"
2748
1873
  },
2749
1874
  "configurations": {
2750
1875
  "production": {
2751
1876
  "tsConfig": "projects/mobile/placeholder/runtime-dynamic/tsconfig.lib.prod.json"
2752
1877
  }
2753
1878
  }
2754
- },
2755
- "lint": {
2756
- "builder": "@angular-devkit/build-angular:tslint",
2757
- "options": {
2758
- "tsConfig": [
2759
- "projects/mobile/placeholder/tsconfig.lib.json",
2760
- "projects/mobile/placeholder/tsconfig.spec.json"
2761
- ],
2762
- "exclude": [
2763
- "**/node_modules/**"
2764
- ]
2765
- }
2766
1879
  }
2767
1880
  }
2768
1881
  }
2769
1882
  },
2770
- "defaultProject": "angular-app",
2771
1883
  "cli": {
2772
1884
  "analytics": "fe5e8f46-2dff-4044-b3b8-8a1307278ce6"
2773
1885
  }