tnp-config 13.1.49 → 13.1.51
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.
- package/browser/esm2020/lib/config.mjs +444 -338
- package/browser/esm2020/lib/index.mjs +2 -2
- package/browser/fesm2015/tnp-config.mjs +448 -272
- package/browser/fesm2020/tnp-config.mjs +444 -338
- package/browser/lib/config.d.ts +21 -232
- package/client/esm2020/lib/config.mjs +444 -338
- package/client/esm2020/lib/index.mjs +2 -2
- package/client/fesm2015/tnp-config.mjs +448 -272
- package/client/fesm2020/tnp-config.mjs +444 -338
- package/client/lib/config.d.ts +21 -232
- package/lib/config.d.ts +4 -0
- package/lib/config.js +103 -34
- package/package.json +3 -3
- package/package.json_tnp.json5 +1 -0
- package/tmp-environment.json +29 -28
- package/websql/esm2020/lib/config.mjs +444 -338
- package/websql/esm2020/lib/index.mjs +2 -2
- package/websql/fesm2015/tnp-config.mjs +448 -272
- package/websql/fesm2020/tnp-config.mjs +444 -338
- package/websql/lib/config.d.ts +21 -232
@@ -1,3 +1,4 @@
|
|
1
|
+
import { Helpers } from 'tnp-core/websql';
|
1
2
|
export { CoreHelpers as Helpers } from 'tnp-core/websql';
|
2
3
|
|
3
4
|
/**
|
@@ -5,48 +6,59 @@ export { CoreHelpers as Helpers } from 'tnp-core/websql';
|
|
5
6
|
* @author darekf77@gmail.com
|
6
7
|
* Recommended config for all isomorphic libs *
|
7
8
|
*/
|
9
|
+
const frameworkNameBe = (''
|
10
|
+
/* */
|
11
|
+
/* */
|
12
|
+
);
|
13
|
+
const frameworkName = Helpers.isBrowser ? 'firedev' : frameworkNameBe;
|
8
14
|
const GlobalLibTypeName = {
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
15
|
+
/* */
|
16
|
+
/* */
|
17
|
+
/* */
|
18
|
+
/* */
|
19
|
+
/* */
|
20
|
+
/* */
|
21
|
+
/* */
|
22
|
+
/* */
|
23
|
+
/* */
|
24
|
+
/* */
|
25
|
+
/* */
|
26
|
+
/* */
|
27
|
+
/* */
|
28
|
+
/* */
|
29
|
+
/* */
|
30
|
+
/* */
|
24
31
|
};
|
25
32
|
const LibTypeArr = [
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
33
|
+
/* */
|
34
|
+
/* */
|
35
|
+
/* */
|
36
|
+
/* */
|
37
|
+
/* */
|
38
|
+
/* */
|
39
|
+
/* */
|
40
|
+
/* */
|
41
|
+
/* */
|
42
|
+
/* */
|
43
|
+
/* */
|
44
|
+
/* */
|
45
|
+
/* */
|
46
|
+
/* */
|
47
|
+
];
|
48
|
+
const CoreLibCategoryArr = [ // TODO this is for what ?
|
49
|
+
/* */
|
50
|
+
/* */
|
51
|
+
/* */
|
52
|
+
/* */
|
53
|
+
/* */
|
54
|
+
/* */
|
55
|
+
/* */
|
56
|
+
/* */
|
39
57
|
];
|
40
|
-
const
|
41
|
-
|
42
|
-
|
43
|
-
GlobalLibTypeName.angularClient,
|
44
|
-
GlobalLibTypeName.electronClient,
|
45
|
-
GlobalLibTypeName.ionicClient,
|
46
|
-
GlobalLibTypeName.docker,
|
47
|
-
'common'
|
58
|
+
const allowedEnvironments = [
|
59
|
+
/* */
|
60
|
+
/* */
|
48
61
|
];
|
49
|
-
const allowedEnvironments = ['static', 'dev', 'prod', 'stage', 'online', 'test', 'qa', 'custom'];
|
50
62
|
const allowedEnvironmentsObj = {};
|
51
63
|
allowedEnvironments.forEach(s => {
|
52
64
|
// @ts-ignore
|
@@ -58,56 +70,135 @@ const morphi = 'morphi';
|
|
58
70
|
/* */
|
59
71
|
const urlMorphi = 'https://github.com/darekf77/morphi.git';
|
60
72
|
const filesNotAllowedToClean = {
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
73
|
+
/* */
|
74
|
+
/* */
|
75
|
+
/* */
|
76
|
+
/* */
|
77
|
+
/* */
|
78
|
+
/* */
|
79
|
+
/* */
|
80
|
+
/* */
|
81
|
+
};
|
82
|
+
const file = {
|
83
|
+
/* */
|
84
|
+
/* */
|
85
|
+
/* */
|
86
|
+
/* */
|
87
|
+
/* */
|
88
|
+
/* */
|
89
|
+
/* */
|
90
|
+
/* */
|
91
|
+
/* */
|
92
|
+
/* */
|
93
|
+
/* */
|
94
|
+
/* */
|
95
|
+
/* */
|
96
|
+
/* */
|
97
|
+
/* */
|
98
|
+
/* */
|
99
|
+
/* */
|
100
|
+
/* */
|
101
|
+
/* */
|
102
|
+
/* */
|
103
|
+
/* */
|
104
|
+
/* */
|
105
|
+
/* */
|
106
|
+
/* */
|
107
|
+
/* */
|
108
|
+
/* */
|
109
|
+
/* */
|
110
|
+
/* */
|
111
|
+
/* */
|
112
|
+
/* */
|
113
|
+
/* */
|
114
|
+
/* */
|
115
|
+
/* */
|
116
|
+
/* */
|
117
|
+
/* */
|
118
|
+
/* */
|
119
|
+
/* */
|
120
|
+
/* */
|
121
|
+
/* */
|
122
|
+
/* */
|
123
|
+
/* */
|
124
|
+
/* */
|
125
|
+
/* */
|
126
|
+
/* */
|
127
|
+
/* */
|
68
128
|
};
|
69
|
-
const file = Object.assign({ _bowerrc: '.bowerrc', bower_json: 'bower.json', controllers_ts: 'controllers.ts', entities_ts: 'entities.ts', angular_json: 'angular.json', autob_actions_js: 'auto-actions.js', local_config_js: 'local-config.js', build_config_js: 'build-config.js', local_config: 'local-config', start_backend_ts: 'start.backend.ts', package_json: 'package.json', result_packages_json: 'result-packages.json', package_json5: 'package.json5', package_json__tnp_json: 'package.json_tnp.json', package_json__tnp_json5: 'package.json_tnp.json5', package_json__devDependencies_json: 'package.json_devDependencies.json', yarn_lock: 'yarn.lock', package_lock_json: 'package-lock.json', tnpEnvironment_json: 'tmp-environment.json', environment: 'environment', environment_js: 'environment.js', tmp_transaction_pid_txt: 'tmp-transaction-pid.txt', manifest_webmanifest: 'manifest.webmanifest', public_api_d_ts: 'public-api.d.ts', public_api_ts: 'public-api.ts', public_api: 'public-api', _babelrc: '.babelrc', index: 'index', index_d_ts: 'index.d.ts', index_ts: 'index.ts', index_js: 'index.js', index_js_map: 'index.js.map', db_json: 'db.json', db_for_tests_json: 'db-for-tests.json', tmpDockerImageId: 'tmp-docker-image-id', tmp_recent_json: 'recent.json', tmpIsomorphicPackagesJson: 'tmp-isomorphic-packages.json', tsconfig_json: 'tsconfig.json', README_MD: 'README.md', server_key: 'server.key', server_cert: 'server.cert', server_chain_cert: 'server-chain.cert', meta_config_md: 'meta-content.md' }, filesNotAllowedToClean);
|
70
129
|
const packageJsonSplit = [
|
71
|
-
|
72
|
-
|
73
|
-
|
130
|
+
/* */
|
131
|
+
/* */
|
132
|
+
/* */
|
133
|
+
/* */
|
74
134
|
];
|
75
135
|
const tempFolders = {
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
136
|
+
/* */
|
137
|
+
/* */
|
138
|
+
/* */
|
139
|
+
/* */
|
140
|
+
/* */
|
141
|
+
/* */
|
142
|
+
/* */
|
143
|
+
/* */
|
144
|
+
/* */
|
145
|
+
/* */
|
146
|
+
/* */
|
147
|
+
/* */
|
148
|
+
/* */
|
149
|
+
/* */
|
150
|
+
/* */
|
151
|
+
/* */
|
152
|
+
/* */
|
153
|
+
/* */
|
154
|
+
/* */
|
155
|
+
/* */
|
156
|
+
/* */
|
157
|
+
/* */
|
158
|
+
/* */
|
98
159
|
};
|
99
160
|
const stylesFilesExtension = [
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
161
|
+
/* */
|
162
|
+
/* */
|
163
|
+
/* */
|
164
|
+
/* */
|
165
|
+
/* */
|
104
166
|
];
|
105
|
-
const folder =
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
167
|
+
const folder = {
|
168
|
+
/* */
|
169
|
+
/* */
|
170
|
+
/* */
|
171
|
+
/* */
|
172
|
+
/* */
|
173
|
+
/* */
|
174
|
+
/* */
|
175
|
+
/* */
|
176
|
+
/* */
|
177
|
+
/* */
|
178
|
+
/* */
|
179
|
+
/* */
|
180
|
+
/* */
|
181
|
+
/* */
|
182
|
+
/* */
|
183
|
+
/* */
|
184
|
+
/* */
|
185
|
+
/* */
|
186
|
+
/* */
|
187
|
+
/* */
|
188
|
+
/* */
|
189
|
+
/* */
|
190
|
+
/* */
|
191
|
+
/* */
|
192
|
+
/* */
|
193
|
+
/* */
|
194
|
+
/* */
|
195
|
+
/* */
|
196
|
+
/* */
|
197
|
+
/* */
|
198
|
+
/* */
|
199
|
+
/* */
|
200
|
+
/* */
|
201
|
+
};
|
111
202
|
let dirnameForTnp;
|
112
203
|
/* */
|
113
204
|
/* */
|
@@ -194,76 +285,131 @@ const firedevProjectsRelative = `../morphi/projects`;
|
|
194
285
|
/* */
|
195
286
|
/* */
|
196
287
|
/* */
|
288
|
+
/* */
|
289
|
+
/* */
|
290
|
+
/* */
|
291
|
+
/* */
|
292
|
+
/* */
|
293
|
+
/* */
|
294
|
+
/* */
|
197
295
|
const moduleNameAngularLib = [
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
296
|
+
/* */
|
297
|
+
/* */
|
298
|
+
/* */
|
299
|
+
/* */
|
300
|
+
/* */
|
202
301
|
];
|
203
302
|
const moduleNameIsomorphicLib = [
|
204
|
-
|
205
|
-
|
206
|
-
|
303
|
+
/* */
|
304
|
+
/* */
|
305
|
+
/* */
|
306
|
+
/* */
|
207
307
|
];
|
208
308
|
const argsReplacementsBuild = {
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
309
|
+
/* */
|
310
|
+
/* */
|
311
|
+
/* */
|
312
|
+
/* */
|
313
|
+
/* */
|
314
|
+
/* */
|
315
|
+
/* */
|
316
|
+
/* */
|
317
|
+
/* */
|
318
|
+
/* */
|
319
|
+
/* */
|
320
|
+
/* */
|
321
|
+
/* */
|
322
|
+
/* */
|
323
|
+
/* */
|
324
|
+
/* */
|
325
|
+
/* */
|
326
|
+
/* */
|
327
|
+
/* */
|
328
|
+
/* */
|
329
|
+
/* */
|
330
|
+
/* */
|
331
|
+
/* */
|
332
|
+
/* */
|
333
|
+
/* */
|
334
|
+
/* */
|
335
|
+
/* */
|
336
|
+
/* */
|
337
|
+
/* */
|
338
|
+
/* */
|
339
|
+
/* */
|
340
|
+
/* */
|
341
|
+
/* */
|
342
|
+
/* */
|
343
|
+
/* */
|
344
|
+
/* */
|
345
|
+
/* */
|
346
|
+
/* */
|
347
|
+
/* */
|
348
|
+
/* */
|
349
|
+
/* */
|
350
|
+
/* */
|
351
|
+
/* */
|
352
|
+
/* */
|
353
|
+
/* */
|
220
354
|
};
|
221
355
|
const argsReplacementsOther = {
|
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
|
-
|
356
|
+
/* */
|
357
|
+
/* */
|
358
|
+
/* */
|
359
|
+
/* */
|
360
|
+
/* */
|
361
|
+
/* */
|
362
|
+
/* */
|
363
|
+
/* */
|
364
|
+
/* */
|
365
|
+
/* */
|
366
|
+
/* */
|
367
|
+
/* */
|
368
|
+
/* */
|
369
|
+
/* */
|
370
|
+
/* */
|
371
|
+
/* */
|
372
|
+
/* */
|
373
|
+
/* */
|
374
|
+
/* */
|
375
|
+
/* */
|
376
|
+
/* */
|
377
|
+
/* */
|
378
|
+
/* */
|
379
|
+
/* */
|
380
|
+
/* */
|
381
|
+
/* */
|
382
|
+
/* */
|
383
|
+
/* */
|
384
|
+
/* */
|
385
|
+
/* */
|
386
|
+
/* */
|
387
|
+
/* */
|
388
|
+
/* */
|
389
|
+
/* */
|
390
|
+
/* */
|
391
|
+
/* */
|
392
|
+
/* */
|
393
|
+
/* */
|
394
|
+
/* */
|
395
|
+
/* */
|
396
|
+
/* */
|
397
|
+
/* */
|
398
|
+
/* */
|
399
|
+
/* */
|
400
|
+
/* */
|
401
|
+
/* */
|
402
|
+
/* */
|
258
403
|
};
|
259
404
|
const areTrustedForPatchUpdate = [
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
405
|
+
/* */
|
406
|
+
/* */
|
407
|
+
/* */
|
408
|
+
/* */
|
409
|
+
/* */
|
410
|
+
/* */
|
411
|
+
/* */
|
412
|
+
/* */
|
267
413
|
];
|
268
414
|
const config = {
|
269
415
|
packagesThat: {
|
@@ -281,9 +427,10 @@ const config = {
|
|
281
427
|
/* */
|
282
428
|
coreProjectVersions: ['v1', 'v2', 'v3'],
|
283
429
|
quickFixes: {
|
284
|
-
|
285
|
-
|
286
|
-
|
430
|
+
/* */
|
431
|
+
/* */
|
432
|
+
/* */
|
433
|
+
/* */
|
287
434
|
},
|
288
435
|
packageJsonSplit,
|
289
436
|
regexString: {
|
@@ -297,19 +444,32 @@ const config = {
|
|
297
444
|
},
|
298
445
|
defaultFrameworkVersion: 'v3',
|
299
446
|
CONST: {
|
300
|
-
|
301
|
-
|
302
|
-
|
447
|
+
/* */
|
448
|
+
/* */
|
449
|
+
/* */
|
450
|
+
/* */
|
303
451
|
},
|
304
452
|
debug: {
|
305
|
-
sourceModifier: [],
|
306
|
-
baselineSiteJoin: {
|
307
|
-
DEBUG_PATHES: [],
|
308
|
-
DEBUG_MERGE_PATHES: []
|
309
|
-
}
|
310
|
-
},
|
311
453
|
/* */
|
312
454
|
/* */
|
455
|
+
/* */
|
456
|
+
/* */
|
457
|
+
/* */
|
458
|
+
/* */
|
459
|
+
/* */
|
460
|
+
/* */
|
461
|
+
/* */
|
462
|
+
/* */
|
463
|
+
/* */
|
464
|
+
/* */
|
465
|
+
/* */
|
466
|
+
/* */
|
467
|
+
/* */
|
468
|
+
/* */
|
469
|
+
/* */
|
470
|
+
/* */
|
471
|
+
},
|
472
|
+
frameworkName,
|
313
473
|
frameworkNames: {
|
314
474
|
tnp: 'tnp',
|
315
475
|
firedev: 'firedev'
|
@@ -421,11 +581,12 @@ const config = {
|
|
421
581
|
filesNotAllowedToClean: Object.keys(filesNotAllowedToClean).map(key => filesNotAllowedToClean[key]),
|
422
582
|
file,
|
423
583
|
default: {
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
584
|
+
/* */
|
585
|
+
/* */
|
586
|
+
/* */
|
587
|
+
/* */
|
588
|
+
/* */
|
589
|
+
/* */
|
429
590
|
},
|
430
591
|
SUBERIZED_PREFIX: `---stuberized`,
|
431
592
|
names: {
|
@@ -438,47 +599,50 @@ const config = {
|
|
438
599
|
'reservedExpSec'
|
439
600
|
],
|
440
601
|
extensions: {
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
602
|
+
/* */
|
603
|
+
/* */
|
604
|
+
/* */
|
605
|
+
/* */
|
606
|
+
/* */
|
607
|
+
/* */
|
608
|
+
/* */
|
609
|
+
/* */
|
610
|
+
/* */
|
611
|
+
/* */
|
612
|
+
/* */
|
451
613
|
},
|
452
614
|
notFiredevProjects: [
|
453
|
-
|
615
|
+
/* */
|
616
|
+
/* */
|
454
617
|
],
|
455
618
|
/**
|
456
619
|
* Build allowed types
|
457
620
|
*/
|
458
621
|
allowedTypes: {
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
622
|
+
/* */
|
623
|
+
/* */
|
624
|
+
/* */
|
625
|
+
/* */
|
626
|
+
/* */
|
627
|
+
/* */
|
628
|
+
/* */
|
629
|
+
/* */
|
630
|
+
/* */
|
631
|
+
/* */
|
632
|
+
/* */
|
633
|
+
/* */
|
634
|
+
/* */
|
635
|
+
/* */
|
636
|
+
/* */
|
637
|
+
/* */
|
638
|
+
/* */
|
639
|
+
/* */
|
640
|
+
/* */
|
641
|
+
/* */
|
642
|
+
/* */
|
643
|
+
/* */
|
644
|
+
/* */
|
645
|
+
/* */
|
482
646
|
},
|
483
647
|
moduleNameAngularLib,
|
484
648
|
moduleNameIsomorphicLib,
|
@@ -487,37 +651,39 @@ const config = {
|
|
487
651
|
styles: stylesFilesExtension,
|
488
652
|
},
|
489
653
|
projectTypes: {
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
654
|
+
/* */
|
655
|
+
/* */
|
656
|
+
/* */
|
657
|
+
/* */
|
658
|
+
/* */
|
659
|
+
/* */
|
660
|
+
/* */
|
661
|
+
/* */
|
662
|
+
/* */
|
663
|
+
/* */
|
664
|
+
/* */
|
665
|
+
/* */
|
666
|
+
/* */
|
667
|
+
/* */
|
668
|
+
/* */
|
504
669
|
},
|
505
670
|
localLibs: [
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
671
|
+
/* */
|
672
|
+
/* */
|
673
|
+
/* */
|
674
|
+
/* */
|
675
|
+
/* */
|
676
|
+
/* */
|
677
|
+
/* */
|
678
|
+
/* */
|
679
|
+
/* */
|
680
|
+
/* */
|
681
|
+
/* */
|
682
|
+
/* */
|
683
|
+
/* */
|
684
|
+
/* */
|
685
|
+
/* */
|
686
|
+
/* */
|
521
687
|
],
|
522
688
|
helpAlias: [
|
523
689
|
'-h',
|
@@ -527,67 +693,77 @@ const config = {
|
|
527
693
|
],
|
528
694
|
required: {
|
529
695
|
npm: [
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
696
|
+
/* */
|
697
|
+
/* */
|
698
|
+
/* */
|
699
|
+
/* */
|
700
|
+
/* */
|
701
|
+
/* */
|
702
|
+
/* */
|
703
|
+
/* */
|
704
|
+
/* */
|
705
|
+
/* */
|
706
|
+
/* */
|
707
|
+
/* */
|
708
|
+
/* */
|
709
|
+
/* */
|
710
|
+
/* */
|
711
|
+
/* */
|
712
|
+
/* */
|
713
|
+
/* */
|
714
|
+
/* */
|
715
|
+
/* */
|
716
|
+
/* */
|
717
|
+
/* */
|
718
|
+
/* */
|
719
|
+
/* */
|
720
|
+
/* */
|
721
|
+
/* */
|
722
|
+
/* */
|
723
|
+
/* */
|
724
|
+
/* */
|
725
|
+
/* */
|
726
|
+
/* */
|
553
727
|
],
|
554
728
|
niceTools: [
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
729
|
+
/* */
|
730
|
+
/* */
|
731
|
+
/* */
|
732
|
+
/* */
|
733
|
+
/* */
|
734
|
+
/* */
|
735
|
+
/* */
|
736
|
+
/* */
|
737
|
+
/* */
|
738
|
+
/* */
|
739
|
+
/* */
|
740
|
+
/* */
|
741
|
+
/* */
|
742
|
+
/* */
|
743
|
+
/* */
|
744
|
+
/* */
|
745
|
+
/* */
|
746
|
+
/* */
|
747
|
+
/* */
|
748
|
+
/* */
|
749
|
+
/* */
|
750
|
+
/* */
|
751
|
+
/* */
|
577
752
|
],
|
578
753
|
programs: [,
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
754
|
+
/* */
|
755
|
+
/* */
|
756
|
+
/* */
|
757
|
+
/* */
|
758
|
+
/* */
|
583
759
|
]
|
584
760
|
}
|
585
761
|
};
|
586
762
|
;
|
587
|
-
({}); // @--end-of-file-for-module=tnp-config
|
763
|
+
({}); // @--end-of-file-for-module=tnp-config lib/config.ts
|
588
764
|
|
589
765
|
;
|
590
|
-
({}); // @--end-of-file-for-module=tnp-config
|
766
|
+
({}); // @--end-of-file-for-module=tnp-config lib/index.ts
|
591
767
|
|
592
768
|
/**
|
593
769
|
* Generated bundle index. Do not edit.
|