tnp-config 13.0.29 → 13.0.33

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.
@@ -0,0 +1,719 @@
1
+ export { CoreHelpers as Helpers } from 'tnp-core/websql';
2
+
3
+ /**
4
+ * Dariusz Filipiak
5
+ * @author darekf77@gmail.com
6
+ * Recommended config for all isomorphic libs *
7
+ */
8
+ const GlobalLibTypeName = {
9
+ isomorphicLib: 'isomorphic-lib',
10
+ angularLib: 'angular-lib',
11
+ electronClient: 'electron-client',
12
+ ionicLib: 'ionic-lib',
13
+ angularClient: 'angular-client',
14
+ ionicClient: 'ionic-client',
15
+ workspace: 'workspace',
16
+ container: 'container',
17
+ docker: 'docker',
18
+ unknowNpmProject: 'unknow-npm-project',
19
+ vscodeExt: 'vscode-ext',
20
+ chromeExt: 'chrome-ext',
21
+ singleFileProject: 'single-file-project',
22
+ navi: 'navi',
23
+ scenario: 'scenario'
24
+ };
25
+ const LibTypeArr = [
26
+ GlobalLibTypeName.angularLib,
27
+ GlobalLibTypeName.isomorphicLib,
28
+ GlobalLibTypeName.angularClient,
29
+ GlobalLibTypeName.ionicClient,
30
+ GlobalLibTypeName.electronClient,
31
+ GlobalLibTypeName.workspace,
32
+ GlobalLibTypeName.container,
33
+ GlobalLibTypeName.docker,
34
+ GlobalLibTypeName.unknowNpmProject,
35
+ GlobalLibTypeName.vscodeExt,
36
+ GlobalLibTypeName.chromeExt,
37
+ GlobalLibTypeName.navi,
38
+ GlobalLibTypeName.scenario,
39
+ ];
40
+ const CoreLibCategoryArr = [
41
+ GlobalLibTypeName.angularLib,
42
+ GlobalLibTypeName.isomorphicLib,
43
+ GlobalLibTypeName.angularClient,
44
+ GlobalLibTypeName.electronClient,
45
+ GlobalLibTypeName.ionicClient,
46
+ GlobalLibTypeName.docker,
47
+ 'common'
48
+ ];
49
+ //#endregion
50
+ const allowedEnvironments = ['static', 'dev', 'prod', 'stage', 'online', 'test', 'qa', 'custom'];
51
+ const allowedEnvironmentsObj = {};
52
+ allowedEnvironments.forEach(s => {
53
+ // @ts-ignore
54
+ allowedEnvironmentsObj[s] = s;
55
+ });
56
+ const firedev = 'firedev';
57
+ const morphi = 'morphi';
58
+ /* */
59
+ /* */
60
+ const urlMorphi = 'https://github.com/darekf77/morphi.git';
61
+ const filesNotAllowedToClean = {
62
+ _gitignore: '.gitignore',
63
+ _npmrc: '.npmrc',
64
+ _npmignore: '.npmignore',
65
+ tslint_json: 'tslint.json',
66
+ _editorconfig: '.editorconfig',
67
+ _angularCli_json: '.angular-cli.json',
68
+ _vscode_launch_json: '.vscode/launch.json',
69
+ };
70
+ const file = {
71
+ _bowerrc: '.bowerrc',
72
+ bower_json: 'bower.json',
73
+ controllers_ts: 'controllers.ts',
74
+ entities_ts: 'entities.ts',
75
+ angular_json: 'angular.json',
76
+ autob_actions_js: 'auto-actions.js',
77
+ local_config_js: 'local-config.js',
78
+ build_config_js: 'build-config.js',
79
+ local_config: 'local-config',
80
+ start_backend_ts: 'start.backend.ts',
81
+ package_json: 'package.json',
82
+ result_packages_json: 'result-packages.json',
83
+ package_json5: 'package.json5',
84
+ package_json__tnp_json: 'package.json_tnp.json',
85
+ package_json__tnp_json5: 'package.json_tnp.json5',
86
+ package_json__devDependencies_json: 'package.json_devDependencies.json',
87
+ yarn_lock: 'yarn.lock',
88
+ package_lock_json: 'package-lock.json',
89
+ tnpEnvironment_json: 'tmp-environment.json',
90
+ environment: 'environment',
91
+ environment_js: 'environment.js',
92
+ tmp_transaction_pid_txt: 'tmp-transaction-pid.txt',
93
+ manifest_webmanifest: 'manifest.webmanifest',
94
+ publicApi_ts: 'public_api.ts',
95
+ publicApi_d_ts: 'public_api.d.ts',
96
+ publicapi_ts: 'public-api.ts',
97
+ _babelrc: '.babelrc',
98
+ index_d_ts: 'index.d.ts',
99
+ index_ts: 'index.ts',
100
+ index_js: 'index.js',
101
+ index_js_map: 'index.js.map',
102
+ db_json: 'db.json',
103
+ db_for_tests_json: 'db-for-tests.json',
104
+ tmpDockerImageId: 'tmp-docker-image-id',
105
+ tmp_recent_json: 'recent.json',
106
+ tmpIsomorphicPackagesJson: 'tmp-isomorphic-packages.json',
107
+ tsconfig_json: 'tsconfig.json',
108
+ README_MD: 'README.md',
109
+ server_key: 'server.key',
110
+ server_cert: 'server.cert',
111
+ server_chain_cert: 'server-chain.cert',
112
+ meta_config_md: 'meta-content.md',
113
+ ...filesNotAllowedToClean
114
+ };
115
+ const packageJsonSplit = [
116
+ file.package_json__tnp_json,
117
+ file.package_json__tnp_json5,
118
+ file.package_json__devDependencies_json,
119
+ ];
120
+ const tempFolders = {
121
+ bundle: 'bundle',
122
+ vendor: 'vendor',
123
+ docs: 'docs',
124
+ dist: 'dist',
125
+ tmp: 'tmp',
126
+ tmpBundleRelease: 'tmp-bundle-release',
127
+ tempSrc: 'tmp-src',
128
+ tempSrcDist: 'tmp-src-dist',
129
+ previewDistApp: 'dist-app',
130
+ preview: 'preview',
131
+ browser: 'browser',
132
+ websql: 'websql',
133
+ _browser: '.browser',
134
+ module: 'module',
135
+ backup: 'backup',
136
+ node_modules: 'node_modules',
137
+ client: 'client',
138
+ tnp_tests_context: 'tmp-tests-context',
139
+ tmpPackage: 'tmp-package',
140
+ tmpScenarios: 'tmp-scenarios',
141
+ tmpTestsEnvironments: 'tmp-tests-environments',
142
+ testsEnvironments: 'tests-environments',
143
+ };
144
+ const stylesFilesExtension = [
145
+ 'css',
146
+ 'sass',
147
+ 'scss',
148
+ 'less',
149
+ ];
150
+ const folder = {
151
+ scripts: 'scripts',
152
+ scenarios: 'scenarios',
153
+ bower: 'bower',
154
+ src: 'src',
155
+ out: 'out',
156
+ lib: 'lib',
157
+ custom: 'custom',
158
+ components: 'components',
159
+ assets: 'assets',
160
+ apps: 'apps',
161
+ // entities: 'entities',
162
+ // controllers: 'controllers',
163
+ // projects: 'projects',
164
+ workspace: 'workspace',
165
+ container: 'container',
166
+ bin: 'bin',
167
+ _bin: '.bin',
168
+ _vscode: '.vscode',
169
+ project: 'project',
170
+ external: 'external',
171
+ tmpDist: 'tmp-dist',
172
+ tmpFor(d) {
173
+ return `tmp-src-${d}`;
174
+ },
175
+ targetProjects: {
176
+ DEFAULT_PATH_GENERATED: 'tmp-target-projects/generated',
177
+ DEFAULT_PATH_ORIGINS: 'tmp-target-projects/origins',
178
+ },
179
+ ...tempFolders
180
+ };
181
+ // @LAST RESOLVE TNP LOCATION !!! for each context and RELEASE TNP-CONFIG
182
+ let dirnameForTnp;
183
+ /* */
184
+ /* */
185
+ const firedevProjectsRelative = `../firedev-projects`;
186
+ /* */
187
+ /* */
188
+ /* */
189
+ /* */
190
+ /* */
191
+ /* */
192
+ /* */
193
+ /* */
194
+ /* */
195
+ /* */
196
+ /* */
197
+ /* */
198
+ /* */
199
+ /* */
200
+ /* */
201
+ /* */
202
+ /* */
203
+ /* */
204
+ /* */
205
+ /* */
206
+ /* */
207
+ /* */
208
+ /* */
209
+ /* */
210
+ /* */
211
+ /* */
212
+ /* */
213
+ /* */
214
+ /* */
215
+ /* */
216
+ /* */
217
+ /* */
218
+ /* */
219
+ /* */
220
+ /* */
221
+ /* */
222
+ /* */
223
+ /* */
224
+ /* */
225
+ /* */
226
+ /* */
227
+ /* */
228
+ /* */
229
+ /* */
230
+ /* */
231
+ /* */
232
+ /* */
233
+ /* */
234
+ /* */
235
+ /* */
236
+ /* */
237
+ /* */
238
+ /* */
239
+ /* */
240
+ /* */
241
+ /* */
242
+ /* */
243
+ /* */
244
+ /* */
245
+ /* */
246
+ /* */
247
+ /* */
248
+ /* */
249
+ /* */
250
+ /* */
251
+ /* */
252
+ /* */
253
+ /* */
254
+ /* */
255
+ /* */
256
+ /* */
257
+ /* */
258
+ /* */
259
+ /* */
260
+ /* */
261
+ /* */
262
+ /* */
263
+ /* */
264
+ /* */
265
+ /* */
266
+ /* */
267
+ /* */
268
+ const moduleNameAngularLib = [
269
+ folder.components,
270
+ folder.module,
271
+ folder.dist,
272
+ folder.browser,
273
+ ];
274
+ const moduleNameIsomorphicLib = [
275
+ folder.src,
276
+ folder.dist,
277
+ folder.browser,
278
+ ];
279
+ const argsReplacementsBuild = {
280
+ // SHORTCUTS
281
+ 'ba': 'build:app',
282
+ 'baw': 'build:app:watch',
283
+ 'bw': 'build:watch',
284
+ 'bap': 'build:app:prod',
285
+ 'bapw': 'build:app:prod:watch',
286
+ // (dist)app build for normal development - watch is ng serve
287
+ 'bda': 'build:dist:app',
288
+ 'bdaw': 'build:dist:app:watch',
289
+ // (dist)app build for normal development (PRODUCTION MINIFIED CODE)
290
+ 'badpw': 'build:app:dist:prod:watch',
291
+ 'badp': 'build:app:dist:prod',
292
+ // (dist)lib build - watch is ng build
293
+ 'bd': 'build:dist', 'bdw': 'build:dist:watch',
294
+ // (dist)lib build - watch is ng build (PRODUCTION MINIFIED CODE)
295
+ 'bdp': 'build:dist:prod', 'bdpw': 'build:dist:prod:watch',
296
+ // (bundle)app build for static code (firedev plugins, project final code, etc.)
297
+ 'bba': 'build:bundle:app', 'bbaw': 'build:bundle:app:watch',
298
+ // (bunle)lib build for static code (firedev plugins, project final code, etc.)
299
+ 'bb': 'build:bundle', 'bbw': 'build:bundle:watch',
300
+ // (bunle)lib build for static code with ng build (PRODUCTION MINIFIED CODE)
301
+ 'bbp': 'build:bundle:prod', 'bbpw': 'build:bundle:prod:watch',
302
+ 'sb': 'static:build',
303
+ 'sbp': 'static:build:prod',
304
+ 'sbd': 'static:build:dist',
305
+ 'sbl': 'static:build:lib',
306
+ 'sba': 'static:build:app',
307
+ 'cb': 'clean:build'
308
+ };
309
+ const argsReplacementsOther = {
310
+ // github docs
311
+ 'ghpush': 'githubpush',
312
+ 'ghpull': 'githubpull',
313
+ // last
314
+ 'l': 'last',
315
+ 'sl': 'show:last',
316
+ 'lb': 'last:build',
317
+ // install
318
+ 'i': 'install',
319
+ 'si': 'sinstall',
320
+ 'il': 'install:locally',
321
+ 'rc': 'recommit',
322
+ // release
323
+ 'rp': 'release:prod',
324
+ 'r': 'release',
325
+ 'rmajor': 'release:major',
326
+ 'rminor': 'release:minor',
327
+ // 'ra': 'release:all',
328
+ 'ar': 'auto:release',
329
+ // versopm
330
+ '--version': 'version',
331
+ '-v': 'version',
332
+ // open
333
+ 'occ': 'open:core:container',
334
+ 'ocp': 'open:core:project',
335
+ // test
336
+ 'twd': 'test:watch:debug',
337
+ 'tdw': 'test:watch:debug',
338
+ 'tw': 'test:watch',
339
+ 'td': 'test:debug',
340
+ 't': 'test',
341
+ // git push
342
+ 'pt': 'push:tag',
343
+ 'p': 'push',
344
+ 'pa': 'pushalll',
345
+ // other
346
+ 'sj': 'select:java',
347
+ 'scm': 'showcoremodules',
348
+ 'tpu': 'target:proj:update',
349
+ 'ugd': 'update:global:deps',
350
+ 'ud': 'update:deps',
351
+ 'dgl': 'detect:global:libs',
352
+ 'pr': 'print:relatives',
353
+ };
354
+ const areTrustedForPatchUpdate = [
355
+ '@angular',
356
+ '@ngrx',
357
+ 'rxjs',
358
+ 'zone.js',
359
+ 'tslib',
360
+ 'typescript',
361
+ 'webpack'
362
+ ];
363
+ const config = {
364
+ packagesThat: {
365
+ areTrustedForPatchUpdate,
366
+ },
367
+ /* */
368
+ /* */
369
+ /* */
370
+ /* */
371
+ /* */
372
+ /* */
373
+ /* */
374
+ /* */
375
+ /* */
376
+ /* */
377
+ coreProjectVersions: ['v1', 'v2', 'v3'],
378
+ quickFixes: {
379
+ missingLibs: [
380
+ 'react-native-sqlite-storage'
381
+ ]
382
+ },
383
+ packageJsonSplit,
384
+ regexString: {
385
+ pathPartStringRegex: `(\/([a-zA-Z0-9]|\\-|\\_|\\+|\\.)*)`
386
+ },
387
+ placeholders: {
388
+ forProjectsInEnvironmentFile: '//<PLACEHOLDER_FOR_PROJECTS>'
389
+ },
390
+ array: {
391
+ isomorphicPackages: 'isomorphicPackages'
392
+ },
393
+ defaultFrameworkVersion: 'v3',
394
+ CONST: {
395
+ UNIT_TEST_TIMEOUT: 30000,
396
+ INTEGRATION_TEST: 30000,
397
+ BACKEND_HTTP_REQUEST_TIMEOUT: 3000,
398
+ },
399
+ debug: {
400
+ sourceModifier: [],
401
+ baselineSiteJoin: {
402
+ DEBUG_PATHES: [
403
+ // "src/apps/auth/AuthController.ts",
404
+ // '/src/app/+preview-components/preview-components.component.ts',
405
+ // '/src/controllers.ts',
406
+ // '/src/app/+preview-components/components/+preview-buildtnpprocess/preview-buildtnpprocess.component.ts'
407
+ ],
408
+ DEBUG_MERGE_PATHES: [
409
+ // "src/apps/auth/AuthController.ts",
410
+ // '/src/app/+preview-components/components/+preview-buildtnpprocess/preview-buildtnpprocess.component.ts'
411
+ // '/components/formly/base-components/editor/editor-wrapper.component.ts'
412
+ // '/src/app/+preview-components/components/+preview-buildtnpprocess/preview-buildtnpprocess.component.ts'
413
+ ]
414
+ }
415
+ },
416
+ /* */
417
+ /* */
418
+ frameworkNames: {
419
+ tnp: 'tnp',
420
+ firedev: 'firedev'
421
+ },
422
+ startPort: 6001,
423
+ frameworks: ['bootstrap', 'ionic', 'material'],
424
+ /* */
425
+ /* */
426
+ /* */
427
+ /* */
428
+ /* */
429
+ /* */
430
+ /* */
431
+ /* */
432
+ /* */
433
+ /* */
434
+ /* */
435
+ /* */
436
+ /* */
437
+ /* */
438
+ /* */
439
+ /* */
440
+ /* */
441
+ /* */
442
+ /* */
443
+ /* */
444
+ /* */
445
+ /* */
446
+ /* */
447
+ /* */
448
+ /* */
449
+ /* */
450
+ /* */
451
+ /* */
452
+ /* */
453
+ /* */
454
+ /* */
455
+ /* */
456
+ /* */
457
+ /* */
458
+ /* */
459
+ /* */
460
+ /* */
461
+ /* */
462
+ /* */
463
+ /* */
464
+ /* */
465
+ /* */
466
+ /* */
467
+ /* */
468
+ /* */
469
+ /* */
470
+ /* */
471
+ /* */
472
+ /* */
473
+ /* */
474
+ /* */
475
+ /* */
476
+ /* */
477
+ /* */
478
+ /* */
479
+ /* */
480
+ /* */
481
+ /* */
482
+ /* */
483
+ /* */
484
+ /* */
485
+ /* */
486
+ /* */
487
+ /* */
488
+ /* */
489
+ /* */
490
+ /* */
491
+ /* */
492
+ /* */
493
+ /* */
494
+ /* */
495
+ /* */
496
+ /* */
497
+ /* */
498
+ /* */
499
+ /* */
500
+ /* */
501
+ /* */
502
+ /* */
503
+ /* */
504
+ /* */
505
+ /* */
506
+ /* */
507
+ /* */
508
+ /* */
509
+ /* */
510
+ /* */
511
+ /* */
512
+ /* */
513
+ /* */
514
+ /* */
515
+ /* */
516
+ /* */
517
+ /* */
518
+ /* */
519
+ /* */
520
+ /* */
521
+ /* */
522
+ allowedEnvironments,
523
+ folder,
524
+ tempFolders,
525
+ // @ts-ignore
526
+ filesNotAllowedToClean: Object.keys(filesNotAllowedToClean).map(key => filesNotAllowedToClean[key]),
527
+ file,
528
+ default: {
529
+ cloud: {
530
+ environment: {
531
+ name: 'online'
532
+ }
533
+ }
534
+ },
535
+ SUBERIZED_PREFIX: `---stuberized`,
536
+ names: {
537
+ env: allowedEnvironmentsObj,
538
+ baseline: 'baseline',
539
+ defaultServer: 'default server',
540
+ },
541
+ reservedArgumentsNamesUglify: [
542
+ 'reservedExpOne',
543
+ 'reservedExpSec'
544
+ ],
545
+ extensions: {
546
+ /**
547
+ * Modify source: import,export, requires
548
+ */
549
+ get modificableByReplaceFn() {
550
+ return [
551
+ 'ts',
552
+ 'js',
553
+ ...stylesFilesExtension,
554
+ ].map(f => `.${f}`);
555
+ },
556
+ },
557
+ notFiredevProjects: [
558
+ 'unknow', 'unknow-npm-project', 'scenario', 'navi'
559
+ ],
560
+ /**
561
+ * Build allowed types
562
+ */
563
+ allowedTypes: {
564
+ /**
565
+ * Projects for build:app:watch command
566
+ */
567
+ app: [
568
+ GlobalLibTypeName.angularClient,
569
+ GlobalLibTypeName.angularLib,
570
+ GlobalLibTypeName.isomorphicLib,
571
+ GlobalLibTypeName.ionicClient,
572
+ GlobalLibTypeName.docker,
573
+ GlobalLibTypeName.container,
574
+ GlobalLibTypeName.vscodeExt,
575
+ ],
576
+ /**
577
+ * Projects for build:(dist|bundle):(watch) command
578
+ */
579
+ libs: [
580
+ GlobalLibTypeName.angularLib,
581
+ GlobalLibTypeName.isomorphicLib,
582
+ GlobalLibTypeName.workspace,
583
+ GlobalLibTypeName.container,
584
+ GlobalLibTypeName.docker,
585
+ GlobalLibTypeName.vscodeExt,
586
+ ]
587
+ },
588
+ moduleNameAngularLib,
589
+ moduleNameIsomorphicLib,
590
+ filesExtensions: {
591
+ filetemplate: 'filetemplate',
592
+ styles: stylesFilesExtension,
593
+ },
594
+ projectTypes: {
595
+ forNpmLibs: [
596
+ GlobalLibTypeName.angularLib,
597
+ GlobalLibTypeName.isomorphicLib,
598
+ ],
599
+ with: {
600
+ angularAsCore: [
601
+ GlobalLibTypeName.angularClient,
602
+ GlobalLibTypeName.angularLib,
603
+ GlobalLibTypeName.ionicClient,
604
+ ],
605
+ componetsAsSrc: [
606
+ GlobalLibTypeName.angularLib,
607
+ ],
608
+ }
609
+ },
610
+ // environmentName,
611
+ localLibs: [
612
+ 'eslint',
613
+ 'mkdirp',
614
+ 'gulp',
615
+ 'npm-run',
616
+ 'rimraf',
617
+ 'nodemon',
618
+ 'release-it',
619
+ 'tsc',
620
+ 'watch',
621
+ 'http-server',
622
+ 'ts-node',
623
+ 'sort-package-json',
624
+ 'concurrently',
625
+ 'sloc',
626
+ 'morphi'
627
+ ],
628
+ helpAlias: [
629
+ '-h',
630
+ '--help',
631
+ '-help',
632
+ 'help'
633
+ ],
634
+ required: {
635
+ npm: [
636
+ { name: '@angular/cli', version: '13' },
637
+ { name: 'extract-zip', version: '1.6.7' },
638
+ { name: 'watch', version: '1.0.2' },
639
+ { name: 'cpr' },
640
+ { name: 'check-node-version' },
641
+ { name: 'npm-run', version: '4.1.2' },
642
+ { name: 'rimraf' },
643
+ { name: 'mkdirp' },
644
+ { name: 'renamer', version: '2.0.1' },
645
+ { name: 'nodemon' },
646
+ { name: 'madge' },
647
+ { name: 'yarn' },
648
+ { name: 'http-server' },
649
+ { name: 'increase-memory-limit' },
650
+ { name: 'bower' },
651
+ { name: 'fkill', installName: 'fkill-cli' },
652
+ // { name: 'yo' },
653
+ { name: 'mocha' },
654
+ // { name: 'chai' },
655
+ { name: 'ts-node' },
656
+ { name: 'vsce' },
657
+ // { name: 'stmux' },
658
+ { name: 'webpack-bundle-analyzer' },
659
+ // { name: 'ng', installName: '@angular/cli' },
660
+ // { name: 'ngx-pwa-icons', version: '0.1.2' },
661
+ // { name: 'real-favicon', installName: 'cli-real-favicon' },
662
+ { name: 'babel', installName: 'babel-cli' },
663
+ { name: 'javascript-obfuscator', version: '4' },
664
+ { name: 'uglifyjs', installName: 'uglify-js' },
665
+ ],
666
+ niceTools: [
667
+ { name: 'speed-test' },
668
+ { name: 'npm-name' },
669
+ { name: 'vantage', platform: 'linux' },
670
+ { name: 'clinic', platform: 'linux' },
671
+ { name: 'vtop', platform: 'linux' },
672
+ { name: 'public-ip' },
673
+ { name: 'empty-trash' },
674
+ { name: 'is-up' },
675
+ { name: 'is-online' },
676
+ { name: 'ttystudio' },
677
+ { name: 'bcat' },
678
+ { name: 'wifi-password', installName: 'wifi-password-cli' },
679
+ { name: 'wallpaper', installName: 'wallpaper-cli' },
680
+ { name: 'brightness', installName: 'brightness-cli' },
681
+ { name: 'subdownloader' },
682
+ { name: 'rtail' },
683
+ { name: 'iponmap' },
684
+ { name: 'jsome' },
685
+ { name: 'drawille', isNotCli: true },
686
+ { name: 'columnify', isNotCli: true },
687
+ { name: 'multispinner', isNotCli: true },
688
+ { name: 'cfonts' }, // draw super nice fonts in console
689
+ ],
690
+ programs: [,
691
+ {
692
+ name: 'code',
693
+ website: 'https://code.visualstudio.com/'
694
+ }
695
+ ]
696
+ }
697
+ };
698
+ // export const GlobalIsomorphicDependencies: ConfigModels.GlobalDependencies = {
699
+ // npm: [
700
+ // { name: 'rimraf' },
701
+ // { name: 'npm-run', version: '4.1.2' },
702
+ // { name: 'cpr' },
703
+ // { name: 'check-node-version' },
704
+ // { name: 'vsce' },
705
+ // ],
706
+ // programs: [
707
+ // // {
708
+ // // name: 'code',
709
+ // // website: 'https://code.visualstudio.com/'
710
+ // // }
711
+ // ] as { name: string; website: string }[]
712
+ // };
713
+
714
+ /**
715
+ * Generated bundle index. Do not edit.
716
+ */
717
+
718
+ export { CoreLibCategoryArr, GlobalLibTypeName, LibTypeArr, config };
719
+ //# sourceMappingURL=tnp-config.mjs.map