tnp-config 13.1.64 → 13.1.65

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,436 +1,436 @@
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
- re: string;
139
- '--version': string;
140
- '-v': string;
141
- occ: string;
142
- ocp: string;
143
- o: string;
144
- twd: string;
145
- tdw: string;
146
- tw: string;
147
- td: string;
148
- t: string;
149
- pt: string;
150
- p: string;
151
- pa: string;
152
- sj: string;
153
- scm: string;
154
- tpu: string;
155
- ugd: string;
156
- ud: string;
157
- dgl: string;
158
- pr: string;
159
- c: string;
160
- au: string;
161
- up: string;
162
- rev: string;
163
- rw: string;
164
- ba: string;
165
- baw: string;
166
- bw: string;
167
- sw: string;
168
- bda: string;
169
- bdap: string;
170
- bd: string;
171
- bdw: string;
172
- bba: string;
173
- bbap: string;
174
- bb: string;
175
- bbw: string;
176
- };
177
- coreBuildFrameworkNames: string[];
178
- ports: {
179
- VPN_SPLIT_SERVER: number;
180
- };
181
- domains: {
182
- localhost: string;
183
- firedev_io: string;
184
- };
185
- pathes: {
186
- logoSvg: string;
187
- logoPng: string;
188
- /**
189
- * Location of compiled source code for tnp framework
190
- * Can be in 3 places:
191
- * - <..>/tnp/dist @DEPRACATED
192
- * - <..>/tnp/bundle @DEPRACATED
193
- * - <some-project>/node_modules/tnp @DEPRACATED
194
- * - <some-project>/node_modules/tnp-config
195
- */
196
- tnp_folder_location: string;
197
- tnp_vscode_ext_location: string;
198
- tnp_tests_context: string;
199
- tnp_db_for_tests_json: string;
200
- scripts: {
201
- HELP_js: string;
202
- allHelpFiles: string;
203
- allPattern: string;
204
- };
205
- projectsExamples: (version?: ConfigModels.FrameworkVersion) => {
206
- workspace: string;
207
- container: string;
208
- projectByType(libType: ConfigModels.NewFactoryType): string;
209
- singlefileproject: string;
210
- };
211
- };
212
- allowedEnvironments: ConfigModels.EnvironmentName[];
213
- folder: {
214
- bundle: string;
215
- vendor: string;
216
- docs: string;
217
- dist: string;
218
- tmp: string;
219
- tmpBundleRelease: string;
220
- tempSrc: string;
221
- tempSrcDist: string;
222
- previewDistApp: string;
223
- preview: string;
224
- browser: string;
225
- websql: string;
226
- _browser: string;
227
- module: string;
228
- backup: string;
229
- node_modules: string;
230
- client: string;
231
- tnp_tests_context: string;
232
- tmpPackage: string;
233
- tmpScenarios: string;
234
- tmpTestsEnvironments: string;
235
- testsEnvironments: string;
236
- scripts: string;
237
- scenarios: string;
238
- bower: string;
239
- src: string;
240
- out: string;
241
- app: string;
242
- lib: string;
243
- libs: string;
244
- source: string;
245
- custom: string;
246
- components: string;
247
- assets: string;
248
- generated: string;
249
- apps: string;
250
- workspace: string;
251
- container: string;
252
- bin: string;
253
- _bin: string;
254
- _vscode: string;
255
- project: string;
256
- external: string;
257
- tmpDist: string;
258
- tmpFor(d: ConfigModels.OutFolder): string;
259
- targetProjects: {
260
- DEFAULT_PATH_GENERATED: string;
261
- DEFAULT_PATH_ORIGINS: string;
262
- };
263
- };
264
- tempFolders: {
265
- bundle: string;
266
- vendor: string;
267
- docs: string;
268
- dist: string;
269
- tmp: string;
270
- tmpBundleRelease: string;
271
- tempSrc: string;
272
- tempSrcDist: string;
273
- previewDistApp: string;
274
- preview: string;
275
- browser: string;
276
- websql: string;
277
- _browser: string;
278
- module: string;
279
- backup: string;
280
- node_modules: string;
281
- client: string;
282
- tnp_tests_context: string;
283
- tmpPackage: string;
284
- tmpScenarios: string;
285
- tmpTestsEnvironments: string;
286
- testsEnvironments: string;
287
- };
288
- filesNotAllowedToClean: string[];
289
- file: {
290
- _gitignore: string;
291
- _npmrc: string;
292
- _npmignore: string;
293
- tslint_json: string;
294
- _editorconfig: string;
295
- _angularCli_json: string;
296
- _vscode_launch_json: string;
297
- _bowerrc: string;
298
- bower_json: string;
299
- controllers_ts: string;
300
- entities_ts: string;
301
- angular_json: string;
302
- autob_actions_js: string;
303
- local_config_js: string;
304
- build_config_js: string;
305
- local_config: string;
306
- start_backend_ts: string;
307
- package_json: string;
308
- result_packages_json: string;
309
- package_json5: string;
310
- package_json__tnp_json: string;
311
- package_json__tnp_json5: string;
312
- package_json__devDependencies_json: string;
313
- yarn_lock: string;
314
- package_lock_json: string;
315
- tnpEnvironment_json: string;
316
- environment: string;
317
- environment_js: string;
318
- tmp_transaction_pid_txt: string;
319
- manifest_webmanifest: string;
320
- public_api_d_ts: string;
321
- public_api_ts: string;
322
- public_api: string;
323
- _babelrc: string;
324
- index: string;
325
- index_d_ts: string;
326
- index_ts: string;
327
- index_js: string;
328
- index_js_map: string;
329
- db_json: string;
330
- db_for_tests_json: string;
331
- tmpDockerImageId: string;
332
- tmp_recent_json: string;
333
- tmpIsomorphicPackagesJson: string;
334
- tsconfig_json: string;
335
- README_MD: string;
336
- server_key: string;
337
- server_cert: string;
338
- server_chain_cert: string;
339
- meta_config_md: string;
340
- logo_png: string;
341
- logo_svg: string;
342
- };
343
- default: {
344
- cloud: {
345
- environment: {
346
- name: ConfigModels.EnvironmentName;
347
- };
348
- };
349
- };
350
- SUBERIZED_PREFIX: string;
351
- names: {
352
- env: {};
353
- baseline: string;
354
- defaultServer: string;
355
- };
356
- reservedArgumentsNamesUglify: string[];
357
- extensions: {
358
- /**
359
- * Modify source: import,export, requires
360
- */
361
- readonly modificableByReplaceFn: string[];
362
- };
363
- notFiredevProjects: ConfigModels.LibType[];
364
- /**
365
- * Build allowed types
366
- */
367
- allowedTypes: {
368
- /**
369
- * Projects for build:app:watch command
370
- */
371
- app: ConfigModels.LibType[];
372
- /**
373
- * Projects for build:(dist|bundle):(watch) command
374
- */
375
- libs: ConfigModels.LibType[];
376
- };
377
- moduleNameAngularLib: string[];
378
- moduleNameIsomorphicLib: string[];
379
- filesExtensions: {
380
- filetemplate: string;
381
- styles: string[];
382
- };
383
- projectTypes: {
384
- forNpmLibs: string[];
385
- with: {
386
- angularAsCore: string[];
387
- componetsAsSrc: string[];
388
- };
389
- };
390
- localLibs: string[];
391
- helpAlias: string[];
392
- required: {
393
- npm: ({
394
- name: string;
395
- version: string;
396
- installName: string;
397
- } | {
398
- name: string;
399
- version: string;
400
- installName?: undefined;
401
- } | {
402
- name: string;
403
- version?: undefined;
404
- installName?: undefined;
405
- } | {
406
- name: string;
407
- installName: string;
408
- version?: undefined;
409
- })[];
410
- niceTools: ({
411
- name: string;
412
- platform?: undefined;
413
- installName?: undefined;
414
- isNotCli?: undefined;
415
- } | {
416
- name: string;
417
- platform: string;
418
- installName?: undefined;
419
- isNotCli?: undefined;
420
- } | {
421
- name: string;
422
- installName: string;
423
- platform?: undefined;
424
- isNotCli?: undefined;
425
- } | {
426
- name: string;
427
- isNotCli: boolean;
428
- platform?: undefined;
429
- installName?: undefined;
430
- })[];
431
- programs: {
432
- name: string;
433
- website: string;
434
- }[];
435
- };
436
- };
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
+ re: string;
139
+ '--version': string;
140
+ '-v': string;
141
+ occ: string;
142
+ ocp: string;
143
+ o: string;
144
+ twd: string;
145
+ tdw: string;
146
+ tw: string;
147
+ td: string;
148
+ t: string;
149
+ pt: string;
150
+ p: string;
151
+ pa: string;
152
+ sj: string;
153
+ scm: string;
154
+ tpu: string;
155
+ ugd: string;
156
+ ud: string;
157
+ dgl: string;
158
+ pr: string;
159
+ c: string;
160
+ au: string;
161
+ up: string;
162
+ rev: string;
163
+ rw: string;
164
+ ba: string;
165
+ baw: string;
166
+ bw: string;
167
+ sw: string;
168
+ bda: string;
169
+ bdap: string;
170
+ bd: string;
171
+ bdw: string;
172
+ bba: string;
173
+ bbap: string;
174
+ bb: string;
175
+ bbw: string;
176
+ };
177
+ coreBuildFrameworkNames: string[];
178
+ ports: {
179
+ VPN_SPLIT_SERVER: number;
180
+ };
181
+ domains: {
182
+ localhost: string;
183
+ firedev_io: string;
184
+ };
185
+ pathes: {
186
+ logoSvg: string;
187
+ logoPng: string;
188
+ /**
189
+ * Location of compiled source code for tnp framework
190
+ * Can be in 3 places:
191
+ * - <..>/tnp/dist @DEPRACATED
192
+ * - <..>/tnp/bundle @DEPRACATED
193
+ * - <some-project>/node_modules/tnp @DEPRACATED
194
+ * - <some-project>/node_modules/tnp-config
195
+ */
196
+ tnp_folder_location: string;
197
+ tnp_vscode_ext_location: string;
198
+ tnp_tests_context: string;
199
+ tnp_db_for_tests_json: string;
200
+ scripts: {
201
+ HELP_js: string;
202
+ allHelpFiles: string;
203
+ allPattern: string;
204
+ };
205
+ projectsExamples: (version?: ConfigModels.FrameworkVersion) => {
206
+ workspace: string;
207
+ container: string;
208
+ projectByType(libType: ConfigModels.NewFactoryType): string;
209
+ singlefileproject: string;
210
+ };
211
+ };
212
+ allowedEnvironments: ConfigModels.EnvironmentName[];
213
+ folder: {
214
+ bundle: string;
215
+ vendor: string;
216
+ docs: string;
217
+ dist: string;
218
+ tmp: string;
219
+ tmpBundleRelease: string;
220
+ tempSrc: string;
221
+ tempSrcDist: string;
222
+ previewDistApp: string;
223
+ preview: string;
224
+ browser: string;
225
+ websql: string;
226
+ _browser: string;
227
+ module: string;
228
+ backup: string;
229
+ node_modules: string;
230
+ client: string;
231
+ tnp_tests_context: string;
232
+ tmpPackage: string;
233
+ tmpScenarios: string;
234
+ tmpTestsEnvironments: string;
235
+ testsEnvironments: string;
236
+ scripts: string;
237
+ scenarios: string;
238
+ bower: string;
239
+ src: string;
240
+ out: string;
241
+ app: string;
242
+ lib: string;
243
+ libs: string;
244
+ source: string;
245
+ custom: string;
246
+ components: string;
247
+ assets: string;
248
+ generated: string;
249
+ apps: string;
250
+ workspace: string;
251
+ container: string;
252
+ bin: string;
253
+ _bin: string;
254
+ _vscode: string;
255
+ project: string;
256
+ external: string;
257
+ tmpDist: string;
258
+ tmpFor(d: ConfigModels.OutFolder): string;
259
+ targetProjects: {
260
+ DEFAULT_PATH_GENERATED: string;
261
+ DEFAULT_PATH_ORIGINS: string;
262
+ };
263
+ };
264
+ tempFolders: {
265
+ bundle: string;
266
+ vendor: string;
267
+ docs: string;
268
+ dist: string;
269
+ tmp: string;
270
+ tmpBundleRelease: string;
271
+ tempSrc: string;
272
+ tempSrcDist: string;
273
+ previewDistApp: string;
274
+ preview: string;
275
+ browser: string;
276
+ websql: string;
277
+ _browser: string;
278
+ module: string;
279
+ backup: string;
280
+ node_modules: string;
281
+ client: string;
282
+ tnp_tests_context: string;
283
+ tmpPackage: string;
284
+ tmpScenarios: string;
285
+ tmpTestsEnvironments: string;
286
+ testsEnvironments: string;
287
+ };
288
+ filesNotAllowedToClean: string[];
289
+ file: {
290
+ _gitignore: string;
291
+ _npmrc: string;
292
+ _npmignore: string;
293
+ tslint_json: string;
294
+ _editorconfig: string;
295
+ _angularCli_json: string;
296
+ _vscode_launch_json: string;
297
+ _bowerrc: string;
298
+ bower_json: string;
299
+ controllers_ts: string;
300
+ entities_ts: string;
301
+ angular_json: string;
302
+ autob_actions_js: string;
303
+ local_config_js: string;
304
+ build_config_js: string;
305
+ local_config: string;
306
+ start_backend_ts: string;
307
+ package_json: string;
308
+ result_packages_json: string;
309
+ package_json5: string;
310
+ package_json__tnp_json: string;
311
+ package_json__tnp_json5: string;
312
+ package_json__devDependencies_json: string;
313
+ yarn_lock: string;
314
+ package_lock_json: string;
315
+ tnpEnvironment_json: string;
316
+ environment: string;
317
+ environment_js: string;
318
+ tmp_transaction_pid_txt: string;
319
+ manifest_webmanifest: string;
320
+ public_api_d_ts: string;
321
+ public_api_ts: string;
322
+ public_api: string;
323
+ _babelrc: string;
324
+ index: string;
325
+ index_d_ts: string;
326
+ index_ts: string;
327
+ index_js: string;
328
+ index_js_map: string;
329
+ db_json: string;
330
+ db_for_tests_json: string;
331
+ tmpDockerImageId: string;
332
+ tmp_recent_json: string;
333
+ tmpIsomorphicPackagesJson: string;
334
+ tsconfig_json: string;
335
+ README_MD: string;
336
+ server_key: string;
337
+ server_cert: string;
338
+ server_chain_cert: string;
339
+ meta_config_md: string;
340
+ logo_png: string;
341
+ logo_svg: string;
342
+ };
343
+ default: {
344
+ cloud: {
345
+ environment: {
346
+ name: ConfigModels.EnvironmentName;
347
+ };
348
+ };
349
+ };
350
+ SUBERIZED_PREFIX: string;
351
+ names: {
352
+ env: {};
353
+ baseline: string;
354
+ defaultServer: string;
355
+ };
356
+ reservedArgumentsNamesUglify: string[];
357
+ extensions: {
358
+ /**
359
+ * Modify source: import,export, requires
360
+ */
361
+ readonly modificableByReplaceFn: string[];
362
+ };
363
+ notFiredevProjects: ConfigModels.LibType[];
364
+ /**
365
+ * Build allowed types
366
+ */
367
+ allowedTypes: {
368
+ /**
369
+ * Projects for build:app:watch command
370
+ */
371
+ app: ConfigModels.LibType[];
372
+ /**
373
+ * Projects for build:(dist|bundle):(watch) command
374
+ */
375
+ libs: ConfigModels.LibType[];
376
+ };
377
+ moduleNameAngularLib: string[];
378
+ moduleNameIsomorphicLib: string[];
379
+ filesExtensions: {
380
+ filetemplate: string;
381
+ styles: string[];
382
+ };
383
+ projectTypes: {
384
+ forNpmLibs: string[];
385
+ with: {
386
+ angularAsCore: string[];
387
+ componetsAsSrc: string[];
388
+ };
389
+ };
390
+ localLibs: string[];
391
+ helpAlias: string[];
392
+ required: {
393
+ npm: ({
394
+ name: string;
395
+ version: string;
396
+ installName: string;
397
+ } | {
398
+ name: string;
399
+ version: string;
400
+ installName?: undefined;
401
+ } | {
402
+ name: string;
403
+ version?: undefined;
404
+ installName?: undefined;
405
+ } | {
406
+ name: string;
407
+ installName: string;
408
+ version?: undefined;
409
+ })[];
410
+ niceTools: ({
411
+ name: string;
412
+ platform?: undefined;
413
+ installName?: undefined;
414
+ isNotCli?: undefined;
415
+ } | {
416
+ name: string;
417
+ platform: string;
418
+ installName?: undefined;
419
+ isNotCli?: undefined;
420
+ } | {
421
+ name: string;
422
+ installName: string;
423
+ platform?: undefined;
424
+ isNotCli?: undefined;
425
+ } | {
426
+ name: string;
427
+ isNotCli: boolean;
428
+ platform?: undefined;
429
+ installName?: undefined;
430
+ })[];
431
+ programs: {
432
+ name: string;
433
+ website: string;
434
+ }[];
435
+ };
436
+ };