tnp-config 13.1.68 → 13.1.70

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/lib/config.d.ts CHANGED
@@ -1,437 +1,437 @@
1
- export { CoreHelpers as Helpers } from 'tnp-core';
2
- export declare namespace ConfigModels {
3
- type EnvironmentName = 'local' | 'static' | 'dev' | 'stage' | 'prod' | 'online' | 'test' | 'qa' | 'custom';
4
- type UIFramework = 'bootstrap' | 'material' | 'ionic';
5
- type FrameworkVersion = 'v1' | 'v2' | 'v3' | 'v4' | 'v5';
6
- type CutableFileExt = 'scss' | 'css' | 'sass' | 'html' | 'ts';
7
- type ImageFileExtension = 'jpg' | 'jpeg' | 'png' | 'svg';
8
- type FileExtension = 'ts' | 'js' | 'json' | 'html' | ImageFileExtension | 'txt' | CutableFileExt;
9
- type HttpMethod = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'head' | 'jsonp';
10
- type ParamType = 'Path' | 'Query' | 'Cookie' | 'Header' | 'Body';
11
- type TsUsage = 'import' | 'export';
12
- type LibType = 'unknow' | 'isomorphic-lib' | 'angular-lib' | 'electron-client' | 'ionic-lib' | 'angular-client' | 'ionic-client' | 'workspace' | 'container' | 'docker' | 'vscode-ext' | 'chrome-ext' | 'unknow-npm-project' | 'scenario' | 'navi' | 'leaf' | 'game-engine-lib-pixi' | 'game-engine-lib-phaser' | 'game-engine-lib-excalibur' | 'game-engine-lib-babylon';
13
- type NewFactoryType = LibType | 'model' | 'single-file-project';
14
- type CoreLibCategory = LibType | 'common';
15
- interface Position {
16
- x: number;
17
- y: number;
18
- }
19
- interface Size {
20
- w: number;
21
- h: number;
22
- }
23
- interface GlobalNpmDependency {
24
- name: string;
25
- installName?: string;
26
- version?: string | number;
27
- }
28
- interface GlobalCommandLineProgramDependency {
29
- name: string;
30
- website: string;
31
- version?: string;
32
- }
33
- interface GlobalDependencies {
34
- npm?: GlobalNpmDependency[];
35
- programs?: GlobalCommandLineProgramDependency[];
36
- }
37
- type FileEvent = 'created' | 'changed' | 'removed' | 'rename';
38
- type OutFolder = 'dist' | 'bundle' | 'browser';
39
- type FormlyInputType = 'input' | 'switch' | 'datepicker' | 'repeat' | 'group';
40
- type DatabaseType = 'better-sqlite3' | 'mysql';
41
- }
42
- export declare const GlobalLibTypeName: {
43
- isomorphicLib: string;
44
- angularLib: string;
45
- electronClient: string;
46
- ionicLib: string;
47
- angularClient: string;
48
- ionicClient: string;
49
- workspace: string;
50
- container: string;
51
- docker: string;
52
- unknowNpmProject: string;
53
- vscodeExt: string;
54
- chromeExt: string;
55
- singleFileProject: string;
56
- navi: string;
57
- scenario: string;
58
- };
59
- export declare const LibTypeArr: ConfigModels.LibType[];
60
- export declare const CoreLibCategoryArr: ConfigModels.CoreLibCategory[];
61
- export declare const config: {
62
- packagesThat: {
63
- areTrustedForPatchUpdate: string[];
64
- };
65
- readonly dbLocation: string;
66
- coreProjectVersions: string[];
67
- quickFixes: {
68
- missingLibs: any[];
69
- };
70
- packageJsonSplit: string[];
71
- regexString: {
72
- pathPartStringRegex: string;
73
- };
74
- placeholders: {
75
- forProjectsInEnvironmentFile: string;
76
- };
77
- array: {
78
- isomorphicPackages: string;
79
- };
80
- defaultFrameworkVersion: ConfigModels.FrameworkVersion;
81
- CONST: {
82
- UNIT_TEST_TIMEOUT: number;
83
- INTEGRATION_TEST: number;
84
- BACKEND_HTTP_REQUEST_TIMEOUT: number;
85
- };
86
- debug: {
87
- sourceModifier: any[];
88
- baselineSiteJoin: {
89
- DEBUG_PATHES: any[];
90
- DEBUG_MERGE_PATHES: any[];
91
- };
92
- };
93
- frameworkName: "firedev" | "tnp";
94
- frameworkNames: {
95
- tnp: string;
96
- firedev: string;
97
- };
98
- startPort: number;
99
- frameworks: ConfigModels.UIFramework[];
100
- tempFiles: {
101
- FILE_NAME_ISOMORPHIC_PACKAGES: string;
102
- };
103
- OVERRIDE_FROM_TNP: string[];
104
- morphiPathUserInUserDir: string;
105
- urlMorphi: string;
106
- argsReplacementsBuild: {
107
- ba: string;
108
- baw: string;
109
- bw: string;
110
- sw: string;
111
- bda: string;
112
- bdap: string;
113
- bd: string;
114
- bdw: string;
115
- bba: string;
116
- bbap: string;
117
- bb: string;
118
- bbw: string;
119
- };
120
- argsGlobalFlags: string[];
121
- argsReplacements: {
122
- ghpush: string;
123
- ghpull: string;
124
- l: string;
125
- sl: string;
126
- lb: string;
127
- i: string;
128
- si: string;
129
- il: string;
130
- rc: string;
131
- rp: string;
132
- r: string;
133
- rmajor: string;
134
- rminor: string;
135
- 'r:major': string;
136
- 'r:minor': string;
137
- ar: string;
138
- ard: string;
139
- re: string;
140
- '--version': string;
141
- '-v': string;
142
- occ: string;
143
- ocp: string;
144
- o: string;
145
- twd: string;
146
- tdw: string;
147
- tw: string;
148
- td: string;
149
- t: string;
150
- pt: string;
151
- p: string;
152
- pa: string;
153
- sj: string;
154
- scm: string;
155
- tpu: string;
156
- ugd: string;
157
- ud: string;
158
- dgl: string;
159
- pr: string;
160
- c: string;
161
- au: string;
162
- up: string;
163
- rev: string;
164
- rw: string;
165
- ba: string;
166
- baw: string;
167
- bw: string;
168
- sw: string;
169
- bda: string;
170
- bdap: string;
171
- bd: string;
172
- bdw: string;
173
- bba: string;
174
- bbap: string;
175
- bb: string;
176
- bbw: string;
177
- };
178
- coreBuildFrameworkNames: string[];
179
- ports: {
180
- VPN_SPLIT_SERVER: number;
181
- };
182
- domains: {
183
- localhost: string;
184
- firedev_io: string;
185
- };
186
- pathes: {
187
- logoSvg: string;
188
- logoPng: string;
189
- /**
190
- * Location of compiled source code for tnp framework
191
- * Can be in 3 places:
192
- * - <..>/tnp/dist @DEPRACATED
193
- * - <..>/tnp/bundle @DEPRACATED
194
- * - <some-project>/node_modules/tnp @DEPRACATED
195
- * - <some-project>/node_modules/tnp-config
196
- */
197
- tnp_folder_location: string;
198
- tnp_vscode_ext_location: string;
199
- tnp_tests_context: string;
200
- tnp_db_for_tests_json: string;
201
- scripts: {
202
- HELP_js: string;
203
- allHelpFiles: string;
204
- allPattern: string;
205
- };
206
- projectsExamples: (version?: ConfigModels.FrameworkVersion) => {
207
- workspace: string;
208
- container: string;
209
- projectByType(libType: ConfigModels.NewFactoryType): string;
210
- singlefileproject: string;
211
- };
212
- };
213
- allowedEnvironments: ConfigModels.EnvironmentName[];
214
- folder: {
215
- bundle: string;
216
- vendor: string;
217
- docs: string;
218
- dist: string;
219
- tmp: string;
220
- tmpBundleRelease: string;
221
- tempSrc: string;
222
- tempSrcDist: string;
223
- previewDistApp: string;
224
- preview: string;
225
- browser: string;
226
- websql: string;
227
- _browser: string;
228
- module: string;
229
- backup: string;
230
- node_modules: string;
231
- client: string;
232
- tnp_tests_context: string;
233
- tmpPackage: string;
234
- tmpScenarios: string;
235
- tmpTestsEnvironments: string;
236
- testsEnvironments: string;
237
- scripts: string;
238
- scenarios: string;
239
- bower: string;
240
- src: string;
241
- out: string;
242
- app: string;
243
- lib: string;
244
- libs: string;
245
- source: string;
246
- custom: string;
247
- components: string;
248
- assets: string;
249
- generated: string;
250
- apps: string;
251
- workspace: string;
252
- container: string;
253
- bin: string;
254
- _bin: string;
255
- _vscode: string;
256
- project: string;
257
- external: string;
258
- tmpDist: string;
259
- tmpFor(d: ConfigModels.OutFolder): string;
260
- targetProjects: {
261
- DEFAULT_PATH_GENERATED: string;
262
- DEFAULT_PATH_ORIGINS: string;
263
- };
264
- };
265
- tempFolders: {
266
- bundle: string;
267
- vendor: string;
268
- docs: string;
269
- dist: string;
270
- tmp: string;
271
- tmpBundleRelease: string;
272
- tempSrc: string;
273
- tempSrcDist: string;
274
- previewDistApp: string;
275
- preview: string;
276
- browser: string;
277
- websql: string;
278
- _browser: string;
279
- module: string;
280
- backup: string;
281
- node_modules: string;
282
- client: string;
283
- tnp_tests_context: string;
284
- tmpPackage: string;
285
- tmpScenarios: string;
286
- tmpTestsEnvironments: string;
287
- testsEnvironments: string;
288
- };
289
- filesNotAllowedToClean: string[];
290
- file: {
291
- _gitignore: string;
292
- _npmrc: string;
293
- _npmignore: string;
294
- tslint_json: string;
295
- _editorconfig: string;
296
- _angularCli_json: string;
297
- _vscode_launch_json: string;
298
- _bowerrc: string;
299
- bower_json: string;
300
- controllers_ts: string;
301
- entities_ts: string;
302
- angular_json: string;
303
- autob_actions_js: string;
304
- local_config_js: string;
305
- build_config_js: string;
306
- local_config: string;
307
- start_backend_ts: string;
308
- package_json: string;
309
- result_packages_json: string;
310
- package_json5: string;
311
- package_json__tnp_json: string;
312
- package_json__tnp_json5: string;
313
- package_json__devDependencies_json: string;
314
- yarn_lock: string;
315
- package_lock_json: string;
316
- tnpEnvironment_json: string;
317
- environment: string;
318
- environment_js: string;
319
- tmp_transaction_pid_txt: string;
320
- manifest_webmanifest: string;
321
- public_api_d_ts: string;
322
- public_api_ts: string;
323
- public_api: string;
324
- _babelrc: string;
325
- index: string;
326
- index_d_ts: string;
327
- index_ts: string;
328
- index_js: string;
329
- index_js_map: string;
330
- db_json: string;
331
- db_for_tests_json: string;
332
- tmpDockerImageId: string;
333
- tmp_recent_json: string;
334
- tmpIsomorphicPackagesJson: string;
335
- tsconfig_json: string;
336
- README_MD: string;
337
- server_key: string;
338
- server_cert: string;
339
- server_chain_cert: string;
340
- meta_config_md: string;
341
- logo_png: string;
342
- logo_svg: string;
343
- };
344
- default: {
345
- cloud: {
346
- environment: {
347
- name: ConfigModels.EnvironmentName;
348
- };
349
- };
350
- };
351
- SUBERIZED_PREFIX: string;
352
- names: {
353
- env: {};
354
- baseline: string;
355
- defaultServer: string;
356
- };
357
- reservedArgumentsNamesUglify: string[];
358
- extensions: {
359
- /**
360
- * Modify source: import,export, requires
361
- */
362
- readonly modificableByReplaceFn: string[];
363
- };
364
- notFiredevProjects: ConfigModels.LibType[];
365
- /**
366
- * Build allowed types
367
- */
368
- allowedTypes: {
369
- /**
370
- * Projects for build:app:watch command
371
- */
372
- app: ConfigModels.LibType[];
373
- /**
374
- * Projects for build:(dist|bundle):(watch) command
375
- */
376
- libs: ConfigModels.LibType[];
377
- };
378
- moduleNameAngularLib: string[];
379
- moduleNameIsomorphicLib: string[];
380
- filesExtensions: {
381
- filetemplate: string;
382
- styles: string[];
383
- };
384
- projectTypes: {
385
- forNpmLibs: string[];
386
- with: {
387
- angularAsCore: string[];
388
- componetsAsSrc: string[];
389
- };
390
- };
391
- localLibs: string[];
392
- helpAlias: string[];
393
- required: {
394
- npm: ({
395
- name: string;
396
- version: string;
397
- installName: string;
398
- } | {
399
- name: string;
400
- version: string;
401
- installName?: undefined;
402
- } | {
403
- name: string;
404
- version?: undefined;
405
- installName?: undefined;
406
- } | {
407
- name: string;
408
- installName: string;
409
- version?: undefined;
410
- })[];
411
- niceTools: ({
412
- name: string;
413
- platform?: undefined;
414
- installName?: undefined;
415
- isNotCli?: undefined;
416
- } | {
417
- name: string;
418
- platform: string;
419
- installName?: undefined;
420
- isNotCli?: undefined;
421
- } | {
422
- name: string;
423
- installName: string;
424
- platform?: undefined;
425
- isNotCli?: undefined;
426
- } | {
427
- name: string;
428
- isNotCli: boolean;
429
- platform?: undefined;
430
- installName?: undefined;
431
- })[];
432
- programs: {
433
- name: string;
434
- website: string;
435
- }[];
436
- };
437
- };
1
+ export { CoreHelpers as Helpers } from 'tnp-core';
2
+ export declare namespace ConfigModels {
3
+ type EnvironmentName = 'local' | 'static' | 'dev' | 'stage' | 'prod' | 'online' | 'test' | 'qa' | 'custom';
4
+ type UIFramework = 'bootstrap' | 'material' | 'ionic';
5
+ type FrameworkVersion = 'v1' | 'v2' | 'v3' | 'v4' | 'v5';
6
+ type CutableFileExt = 'scss' | 'css' | 'sass' | 'html' | 'ts';
7
+ type ImageFileExtension = 'jpg' | 'jpeg' | 'png' | 'svg';
8
+ type FileExtension = 'ts' | 'js' | 'json' | 'html' | ImageFileExtension | 'txt' | CutableFileExt;
9
+ type HttpMethod = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'head' | 'jsonp';
10
+ type ParamType = 'Path' | 'Query' | 'Cookie' | 'Header' | 'Body';
11
+ type TsUsage = 'import' | 'export';
12
+ type LibType = 'unknow' | 'isomorphic-lib' | 'angular-lib' | 'electron-client' | 'ionic-lib' | 'angular-client' | 'ionic-client' | 'workspace' | 'container' | 'docker' | 'vscode-ext' | 'chrome-ext' | 'unknow-npm-project' | 'scenario' | 'navi' | 'leaf' | 'game-engine-lib-pixi' | 'game-engine-lib-phaser' | 'game-engine-lib-excalibur' | 'game-engine-lib-babylon';
13
+ type NewFactoryType = LibType | 'model' | 'single-file-project';
14
+ type CoreLibCategory = LibType | 'common';
15
+ interface Position {
16
+ x: number;
17
+ y: number;
18
+ }
19
+ interface Size {
20
+ w: number;
21
+ h: number;
22
+ }
23
+ interface GlobalNpmDependency {
24
+ name: string;
25
+ installName?: string;
26
+ version?: string | number;
27
+ }
28
+ interface GlobalCommandLineProgramDependency {
29
+ name: string;
30
+ website: string;
31
+ version?: string;
32
+ }
33
+ interface GlobalDependencies {
34
+ npm?: GlobalNpmDependency[];
35
+ programs?: GlobalCommandLineProgramDependency[];
36
+ }
37
+ type FileEvent = 'created' | 'changed' | 'removed' | 'rename';
38
+ type OutFolder = 'dist' | 'bundle' | 'browser';
39
+ type FormlyInputType = 'input' | 'switch' | 'datepicker' | 'repeat' | 'group';
40
+ type DatabaseType = 'better-sqlite3' | 'mysql';
41
+ }
42
+ export declare const GlobalLibTypeName: {
43
+ isomorphicLib: string;
44
+ angularLib: string;
45
+ electronClient: string;
46
+ ionicLib: string;
47
+ angularClient: string;
48
+ ionicClient: string;
49
+ workspace: string;
50
+ container: string;
51
+ docker: string;
52
+ unknowNpmProject: string;
53
+ vscodeExt: string;
54
+ chromeExt: string;
55
+ singleFileProject: string;
56
+ navi: string;
57
+ scenario: string;
58
+ };
59
+ export declare const LibTypeArr: ConfigModels.LibType[];
60
+ export declare const CoreLibCategoryArr: ConfigModels.CoreLibCategory[];
61
+ export declare const config: {
62
+ packagesThat: {
63
+ areTrustedForPatchUpdate: string[];
64
+ };
65
+ readonly dbLocation: string;
66
+ coreProjectVersions: string[];
67
+ quickFixes: {
68
+ missingLibs: any[];
69
+ };
70
+ packageJsonSplit: string[];
71
+ regexString: {
72
+ pathPartStringRegex: string;
73
+ };
74
+ placeholders: {
75
+ forProjectsInEnvironmentFile: string;
76
+ };
77
+ array: {
78
+ isomorphicPackages: string;
79
+ };
80
+ defaultFrameworkVersion: ConfigModels.FrameworkVersion;
81
+ CONST: {
82
+ UNIT_TEST_TIMEOUT: number;
83
+ INTEGRATION_TEST: number;
84
+ BACKEND_HTTP_REQUEST_TIMEOUT: number;
85
+ };
86
+ debug: {
87
+ sourceModifier: any[];
88
+ baselineSiteJoin: {
89
+ DEBUG_PATHES: any[];
90
+ DEBUG_MERGE_PATHES: any[];
91
+ };
92
+ };
93
+ frameworkName: "firedev" | "tnp";
94
+ frameworkNames: {
95
+ tnp: string;
96
+ firedev: string;
97
+ };
98
+ startPort: number;
99
+ frameworks: ConfigModels.UIFramework[];
100
+ tempFiles: {
101
+ FILE_NAME_ISOMORPHIC_PACKAGES: string;
102
+ };
103
+ OVERRIDE_FROM_TNP: string[];
104
+ morphiPathUserInUserDir: string;
105
+ urlMorphi: string;
106
+ argsReplacementsBuild: {
107
+ ba: string;
108
+ baw: string;
109
+ bw: string;
110
+ sw: string;
111
+ bda: string;
112
+ bdap: string;
113
+ bd: string;
114
+ bdw: string;
115
+ bba: string;
116
+ bbap: string;
117
+ bb: string;
118
+ bbw: string;
119
+ };
120
+ argsGlobalFlags: string[];
121
+ argsReplacements: {
122
+ ghpush: string;
123
+ ghpull: string;
124
+ l: string;
125
+ sl: string;
126
+ lb: string;
127
+ i: string;
128
+ si: string;
129
+ il: string;
130
+ rc: string;
131
+ rp: string;
132
+ r: string;
133
+ rmajor: string;
134
+ rminor: string;
135
+ 'r:major': string;
136
+ 'r:minor': string;
137
+ ar: string;
138
+ ard: string;
139
+ re: string;
140
+ '--version': string;
141
+ '-v': string;
142
+ occ: string;
143
+ ocp: string;
144
+ o: string;
145
+ twd: string;
146
+ tdw: string;
147
+ tw: string;
148
+ td: string;
149
+ t: string;
150
+ pt: string;
151
+ p: string;
152
+ pa: string;
153
+ sj: string;
154
+ scm: string;
155
+ tpu: string;
156
+ ugd: string;
157
+ ud: string;
158
+ dgl: string;
159
+ pr: string;
160
+ c: string;
161
+ au: string;
162
+ up: string;
163
+ rev: string;
164
+ rw: string;
165
+ ba: string;
166
+ baw: string;
167
+ bw: string;
168
+ sw: string;
169
+ bda: string;
170
+ bdap: string;
171
+ bd: string;
172
+ bdw: string;
173
+ bba: string;
174
+ bbap: string;
175
+ bb: string;
176
+ bbw: string;
177
+ };
178
+ coreBuildFrameworkNames: string[];
179
+ ports: {
180
+ VPN_SPLIT_SERVER: number;
181
+ };
182
+ domains: {
183
+ localhost: string;
184
+ firedev_io: string;
185
+ };
186
+ pathes: {
187
+ logoSvg: string;
188
+ logoPng: string;
189
+ /**
190
+ * Location of compiled source code for tnp framework
191
+ * Can be in 3 places:
192
+ * - <..>/tnp/dist @DEPRACATED
193
+ * - <..>/tnp/bundle @DEPRACATED
194
+ * - <some-project>/node_modules/tnp @DEPRACATED
195
+ * - <some-project>/node_modules/tnp-config
196
+ */
197
+ tnp_folder_location: string;
198
+ tnp_vscode_ext_location: string;
199
+ tnp_tests_context: string;
200
+ tnp_db_for_tests_json: string;
201
+ scripts: {
202
+ HELP_js: string;
203
+ allHelpFiles: string;
204
+ allPattern: string;
205
+ };
206
+ projectsExamples: (version?: ConfigModels.FrameworkVersion) => {
207
+ workspace: string;
208
+ container: string;
209
+ projectByType(libType: ConfigModels.NewFactoryType): string;
210
+ singlefileproject: string;
211
+ };
212
+ };
213
+ allowedEnvironments: ConfigModels.EnvironmentName[];
214
+ folder: {
215
+ bundle: string;
216
+ vendor: string;
217
+ docs: string;
218
+ dist: string;
219
+ tmp: string;
220
+ tmpBundleRelease: string;
221
+ tempSrc: string;
222
+ tempSrcDist: string;
223
+ previewDistApp: string;
224
+ preview: string;
225
+ browser: string;
226
+ websql: string;
227
+ _browser: string;
228
+ module: string;
229
+ backup: string;
230
+ node_modules: string;
231
+ client: string;
232
+ tnp_tests_context: string;
233
+ tmpPackage: string;
234
+ tmpScenarios: string;
235
+ tmpTestsEnvironments: string;
236
+ testsEnvironments: string;
237
+ scripts: string;
238
+ scenarios: string;
239
+ bower: string;
240
+ src: string;
241
+ out: string;
242
+ app: string;
243
+ lib: string;
244
+ libs: string;
245
+ source: string;
246
+ custom: string;
247
+ components: string;
248
+ assets: string;
249
+ generated: string;
250
+ apps: string;
251
+ workspace: string;
252
+ container: string;
253
+ bin: string;
254
+ _bin: string;
255
+ _vscode: string;
256
+ project: string;
257
+ external: string;
258
+ tmpDist: string;
259
+ tmpFor(d: ConfigModels.OutFolder): string;
260
+ targetProjects: {
261
+ DEFAULT_PATH_GENERATED: string;
262
+ DEFAULT_PATH_ORIGINS: string;
263
+ };
264
+ };
265
+ tempFolders: {
266
+ bundle: string;
267
+ vendor: string;
268
+ docs: string;
269
+ dist: string;
270
+ tmp: string;
271
+ tmpBundleRelease: string;
272
+ tempSrc: string;
273
+ tempSrcDist: string;
274
+ previewDistApp: string;
275
+ preview: string;
276
+ browser: string;
277
+ websql: string;
278
+ _browser: string;
279
+ module: string;
280
+ backup: string;
281
+ node_modules: string;
282
+ client: string;
283
+ tnp_tests_context: string;
284
+ tmpPackage: string;
285
+ tmpScenarios: string;
286
+ tmpTestsEnvironments: string;
287
+ testsEnvironments: string;
288
+ };
289
+ filesNotAllowedToClean: string[];
290
+ file: {
291
+ _gitignore: string;
292
+ _npmrc: string;
293
+ _npmignore: string;
294
+ tslint_json: string;
295
+ _editorconfig: string;
296
+ _angularCli_json: string;
297
+ _vscode_launch_json: string;
298
+ _bowerrc: string;
299
+ bower_json: string;
300
+ controllers_ts: string;
301
+ entities_ts: string;
302
+ angular_json: string;
303
+ autob_actions_js: string;
304
+ local_config_js: string;
305
+ build_config_js: string;
306
+ local_config: string;
307
+ start_backend_ts: string;
308
+ package_json: string;
309
+ result_packages_json: string;
310
+ package_json5: string;
311
+ package_json__tnp_json: string;
312
+ package_json__tnp_json5: string;
313
+ package_json__devDependencies_json: string;
314
+ yarn_lock: string;
315
+ package_lock_json: string;
316
+ tnpEnvironment_json: string;
317
+ environment: string;
318
+ environment_js: string;
319
+ tmp_transaction_pid_txt: string;
320
+ manifest_webmanifest: string;
321
+ public_api_d_ts: string;
322
+ public_api_ts: string;
323
+ public_api: string;
324
+ _babelrc: string;
325
+ index: string;
326
+ index_d_ts: string;
327
+ index_ts: string;
328
+ index_js: string;
329
+ index_js_map: string;
330
+ db_json: string;
331
+ db_for_tests_json: string;
332
+ tmpDockerImageId: string;
333
+ tmp_recent_json: string;
334
+ tmpIsomorphicPackagesJson: string;
335
+ tsconfig_json: string;
336
+ README_MD: string;
337
+ server_key: string;
338
+ server_cert: string;
339
+ server_chain_cert: string;
340
+ meta_config_md: string;
341
+ logo_png: string;
342
+ logo_svg: string;
343
+ };
344
+ default: {
345
+ cloud: {
346
+ environment: {
347
+ name: ConfigModels.EnvironmentName;
348
+ };
349
+ };
350
+ };
351
+ SUBERIZED_PREFIX: string;
352
+ names: {
353
+ env: {};
354
+ baseline: string;
355
+ defaultServer: string;
356
+ };
357
+ reservedArgumentsNamesUglify: string[];
358
+ extensions: {
359
+ /**
360
+ * Modify source: import,export, requires
361
+ */
362
+ readonly modificableByReplaceFn: string[];
363
+ };
364
+ notFiredevProjects: ConfigModels.LibType[];
365
+ /**
366
+ * Build allowed types
367
+ */
368
+ allowedTypes: {
369
+ /**
370
+ * Projects for build:app:watch command
371
+ */
372
+ app: ConfigModels.LibType[];
373
+ /**
374
+ * Projects for build:(dist|bundle):(watch) command
375
+ */
376
+ libs: ConfigModels.LibType[];
377
+ };
378
+ moduleNameAngularLib: string[];
379
+ moduleNameIsomorphicLib: string[];
380
+ filesExtensions: {
381
+ filetemplate: string;
382
+ styles: string[];
383
+ };
384
+ projectTypes: {
385
+ forNpmLibs: string[];
386
+ with: {
387
+ angularAsCore: string[];
388
+ componetsAsSrc: string[];
389
+ };
390
+ };
391
+ localLibs: string[];
392
+ helpAlias: string[];
393
+ required: {
394
+ npm: ({
395
+ name: string;
396
+ version: string;
397
+ installName: string;
398
+ } | {
399
+ name: string;
400
+ version: string;
401
+ installName?: undefined;
402
+ } | {
403
+ name: string;
404
+ version?: undefined;
405
+ installName?: undefined;
406
+ } | {
407
+ name: string;
408
+ installName: string;
409
+ version?: undefined;
410
+ })[];
411
+ niceTools: ({
412
+ name: string;
413
+ platform?: undefined;
414
+ installName?: undefined;
415
+ isNotCli?: undefined;
416
+ } | {
417
+ name: string;
418
+ platform: string;
419
+ installName?: undefined;
420
+ isNotCli?: undefined;
421
+ } | {
422
+ name: string;
423
+ installName: string;
424
+ platform?: undefined;
425
+ isNotCli?: undefined;
426
+ } | {
427
+ name: string;
428
+ isNotCli: boolean;
429
+ platform?: undefined;
430
+ installName?: undefined;
431
+ })[];
432
+ programs: {
433
+ name: string;
434
+ website: string;
435
+ }[];
436
+ };
437
+ };