tnp-config 13.0.28 → 13.0.31

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,718 @@
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
+ 'rm': 'release:major',
326
+ 'ra': 'release:all',
327
+ 'ar': 'auto:release',
328
+ // versopm
329
+ '--version': 'version',
330
+ '-v': 'version',
331
+ // open
332
+ 'occ': 'open:core:container',
333
+ 'ocp': 'open:core:project',
334
+ // test
335
+ 'twd': 'test:watch:debug',
336
+ 'tdw': 'test:watch:debug',
337
+ 'tw': 'test:watch',
338
+ 'td': 'test:debug',
339
+ 't': 'test',
340
+ // git push
341
+ 'pt': 'push:tag',
342
+ 'p': 'push',
343
+ 'pa': 'pushalll',
344
+ // other
345
+ 'sj': 'select:java',
346
+ 'scm': 'showcoremodules',
347
+ 'tpu': 'target:proj:update',
348
+ 'ugd': 'update:global:deps',
349
+ 'ud': 'update:deps',
350
+ 'dgl': 'detect:global:libs',
351
+ 'pr': 'print:relatives',
352
+ };
353
+ const areTrustedForPatchUpdate = [
354
+ '@angular',
355
+ '@ngrx',
356
+ 'rxjs',
357
+ 'zone.js',
358
+ 'tslib',
359
+ 'typescript',
360
+ 'webpack'
361
+ ];
362
+ const config = {
363
+ packagesThat: {
364
+ areTrustedForPatchUpdate,
365
+ },
366
+ /* */
367
+ /* */
368
+ /* */
369
+ /* */
370
+ /* */
371
+ /* */
372
+ /* */
373
+ /* */
374
+ /* */
375
+ /* */
376
+ coreProjectVersions: ['v1', 'v2', 'v3'],
377
+ quickFixes: {
378
+ missingLibs: [
379
+ 'react-native-sqlite-storage'
380
+ ]
381
+ },
382
+ packageJsonSplit,
383
+ regexString: {
384
+ pathPartStringRegex: `(\/([a-zA-Z0-9]|\\-|\\_|\\+|\\.)*)`
385
+ },
386
+ placeholders: {
387
+ forProjectsInEnvironmentFile: '//<PLACEHOLDER_FOR_PROJECTS>'
388
+ },
389
+ array: {
390
+ isomorphicPackages: 'isomorphicPackages'
391
+ },
392
+ defaultFrameworkVersion: 'v3',
393
+ CONST: {
394
+ UNIT_TEST_TIMEOUT: 30000,
395
+ INTEGRATION_TEST: 30000,
396
+ BACKEND_HTTP_REQUEST_TIMEOUT: 3000,
397
+ },
398
+ debug: {
399
+ sourceModifier: [],
400
+ baselineSiteJoin: {
401
+ DEBUG_PATHES: [
402
+ // "src/apps/auth/AuthController.ts",
403
+ // '/src/app/+preview-components/preview-components.component.ts',
404
+ // '/src/controllers.ts',
405
+ // '/src/app/+preview-components/components/+preview-buildtnpprocess/preview-buildtnpprocess.component.ts'
406
+ ],
407
+ DEBUG_MERGE_PATHES: [
408
+ // "src/apps/auth/AuthController.ts",
409
+ // '/src/app/+preview-components/components/+preview-buildtnpprocess/preview-buildtnpprocess.component.ts'
410
+ // '/components/formly/base-components/editor/editor-wrapper.component.ts'
411
+ // '/src/app/+preview-components/components/+preview-buildtnpprocess/preview-buildtnpprocess.component.ts'
412
+ ]
413
+ }
414
+ },
415
+ /* */
416
+ /* */
417
+ frameworkNames: {
418
+ tnp: 'tnp',
419
+ firedev: 'firedev'
420
+ },
421
+ startPort: 6001,
422
+ frameworks: ['bootstrap', 'ionic', 'material'],
423
+ /* */
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
+ allowedEnvironments,
522
+ folder,
523
+ tempFolders,
524
+ // @ts-ignore
525
+ filesNotAllowedToClean: Object.keys(filesNotAllowedToClean).map(key => filesNotAllowedToClean[key]),
526
+ file,
527
+ default: {
528
+ cloud: {
529
+ environment: {
530
+ name: 'online'
531
+ }
532
+ }
533
+ },
534
+ SUBERIZED_PREFIX: `---stuberized`,
535
+ names: {
536
+ env: allowedEnvironmentsObj,
537
+ baseline: 'baseline',
538
+ defaultServer: 'default server',
539
+ },
540
+ reservedArgumentsNamesUglify: [
541
+ 'reservedExpOne',
542
+ 'reservedExpSec'
543
+ ],
544
+ extensions: {
545
+ /**
546
+ * Modify source: import,export, requires
547
+ */
548
+ get modificableByReplaceFn() {
549
+ return [
550
+ 'ts',
551
+ 'js',
552
+ ...stylesFilesExtension,
553
+ ].map(f => `.${f}`);
554
+ },
555
+ },
556
+ notFiredevProjects: [
557
+ 'unknow', 'unknow-npm-project', 'scenario', 'navi'
558
+ ],
559
+ /**
560
+ * Build allowed types
561
+ */
562
+ allowedTypes: {
563
+ /**
564
+ * Projects for build:app:watch command
565
+ */
566
+ app: [
567
+ GlobalLibTypeName.angularClient,
568
+ GlobalLibTypeName.angularLib,
569
+ GlobalLibTypeName.isomorphicLib,
570
+ GlobalLibTypeName.ionicClient,
571
+ GlobalLibTypeName.docker,
572
+ GlobalLibTypeName.container,
573
+ GlobalLibTypeName.vscodeExt,
574
+ ],
575
+ /**
576
+ * Projects for build:(dist|bundle):(watch) command
577
+ */
578
+ libs: [
579
+ GlobalLibTypeName.angularLib,
580
+ GlobalLibTypeName.isomorphicLib,
581
+ GlobalLibTypeName.workspace,
582
+ GlobalLibTypeName.container,
583
+ GlobalLibTypeName.docker,
584
+ GlobalLibTypeName.vscodeExt,
585
+ ]
586
+ },
587
+ moduleNameAngularLib,
588
+ moduleNameIsomorphicLib,
589
+ filesExtensions: {
590
+ filetemplate: 'filetemplate',
591
+ styles: stylesFilesExtension,
592
+ },
593
+ projectTypes: {
594
+ forNpmLibs: [
595
+ GlobalLibTypeName.angularLib,
596
+ GlobalLibTypeName.isomorphicLib,
597
+ ],
598
+ with: {
599
+ angularAsCore: [
600
+ GlobalLibTypeName.angularClient,
601
+ GlobalLibTypeName.angularLib,
602
+ GlobalLibTypeName.ionicClient,
603
+ ],
604
+ componetsAsSrc: [
605
+ GlobalLibTypeName.angularLib,
606
+ ],
607
+ }
608
+ },
609
+ // environmentName,
610
+ localLibs: [
611
+ 'eslint',
612
+ 'mkdirp',
613
+ 'gulp',
614
+ 'npm-run',
615
+ 'rimraf',
616
+ 'nodemon',
617
+ 'release-it',
618
+ 'tsc',
619
+ 'watch',
620
+ 'http-server',
621
+ 'ts-node',
622
+ 'sort-package-json',
623
+ 'concurrently',
624
+ 'sloc',
625
+ 'morphi'
626
+ ],
627
+ helpAlias: [
628
+ '-h',
629
+ '--help',
630
+ '-help',
631
+ 'help'
632
+ ],
633
+ required: {
634
+ npm: [
635
+ { name: '@angular/cli', version: '13' },
636
+ { name: 'extract-zip', version: '1.6.7' },
637
+ { name: 'watch', version: '1.0.2' },
638
+ { name: 'cpr' },
639
+ { name: 'check-node-version' },
640
+ { name: 'npm-run', version: '4.1.2' },
641
+ { name: 'rimraf' },
642
+ { name: 'mkdirp' },
643
+ { name: 'renamer', version: '2.0.1' },
644
+ { name: 'nodemon' },
645
+ { name: 'madge' },
646
+ { name: 'yarn' },
647
+ { name: 'http-server' },
648
+ { name: 'increase-memory-limit' },
649
+ { name: 'bower' },
650
+ { name: 'fkill', installName: 'fkill-cli' },
651
+ // { name: 'yo' },
652
+ { name: 'mocha' },
653
+ // { name: 'chai' },
654
+ { name: 'ts-node' },
655
+ { name: 'vsce' },
656
+ // { name: 'stmux' },
657
+ { name: 'webpack-bundle-analyzer' },
658
+ // { name: 'ng', installName: '@angular/cli' },
659
+ // { name: 'ngx-pwa-icons', version: '0.1.2' },
660
+ // { name: 'real-favicon', installName: 'cli-real-favicon' },
661
+ { name: 'babel', installName: 'babel-cli' },
662
+ { name: 'javascript-obfuscator', version: '4' },
663
+ { name: 'uglifyjs', installName: 'uglify-js' },
664
+ ],
665
+ niceTools: [
666
+ { name: 'speed-test' },
667
+ { name: 'npm-name' },
668
+ { name: 'vantage', platform: 'linux' },
669
+ { name: 'clinic', platform: 'linux' },
670
+ { name: 'vtop', platform: 'linux' },
671
+ { name: 'public-ip' },
672
+ { name: 'empty-trash' },
673
+ { name: 'is-up' },
674
+ { name: 'is-online' },
675
+ { name: 'ttystudio' },
676
+ { name: 'bcat' },
677
+ { name: 'wifi-password', installName: 'wifi-password-cli' },
678
+ { name: 'wallpaper', installName: 'wallpaper-cli' },
679
+ { name: 'brightness', installName: 'brightness-cli' },
680
+ { name: 'subdownloader' },
681
+ { name: 'rtail' },
682
+ { name: 'iponmap' },
683
+ { name: 'jsome' },
684
+ { name: 'drawille', isNotCli: true },
685
+ { name: 'columnify', isNotCli: true },
686
+ { name: 'multispinner', isNotCli: true },
687
+ { name: 'cfonts' }, // draw super nice fonts in console
688
+ ],
689
+ programs: [,
690
+ {
691
+ name: 'code',
692
+ website: 'https://code.visualstudio.com/'
693
+ }
694
+ ]
695
+ }
696
+ };
697
+ // export const GlobalIsomorphicDependencies: ConfigModels.GlobalDependencies = {
698
+ // npm: [
699
+ // { name: 'rimraf' },
700
+ // { name: 'npm-run', version: '4.1.2' },
701
+ // { name: 'cpr' },
702
+ // { name: 'check-node-version' },
703
+ // { name: 'vsce' },
704
+ // ],
705
+ // programs: [
706
+ // // {
707
+ // // name: 'code',
708
+ // // website: 'https://code.visualstudio.com/'
709
+ // // }
710
+ // ] as { name: string; website: string }[]
711
+ // };
712
+
713
+ /**
714
+ * Generated bundle index. Do not edit.
715
+ */
716
+
717
+ export { CoreLibCategoryArr, GlobalLibTypeName, LibTypeArr, config };
718
+ //# sourceMappingURL=tnp-config.mjs.map