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