tnp-config 13.1.72 → 13.1.73

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.
Files changed (37) hide show
  1. package/README.md +17 -17
  2. package/assets/shared/shared_folder_info.txt +1 -1
  3. package/browser/README.md +24 -24
  4. package/browser/esm2020/lib/config.mjs +770 -770
  5. package/browser/esm2020/lib/index.mjs +3 -3
  6. package/browser/esm2020/public-api.mjs +1 -1
  7. package/browser/esm2020/tnp-config.mjs +4 -4
  8. package/browser/fesm2015/tnp-config.mjs +689 -689
  9. package/browser/fesm2020/tnp-config.mjs +763 -763
  10. package/browser/lib/config.d.ts +228 -228
  11. package/browser/tnp-config.d.ts +4 -4
  12. package/client/README.md +24 -24
  13. package/client/esm2020/lib/config.mjs +770 -770
  14. package/client/esm2020/lib/index.mjs +3 -3
  15. package/client/esm2020/public-api.mjs +1 -1
  16. package/client/esm2020/tnp-config.mjs +4 -4
  17. package/client/fesm2015/tnp-config.mjs +689 -689
  18. package/client/fesm2020/tnp-config.mjs +763 -763
  19. package/client/lib/config.d.ts +228 -228
  20. package/client/package.json +6 -6
  21. package/client/tnp-config.d.ts +4 -4
  22. package/index.d.ts +1 -1
  23. package/lib/config.d.ts +438 -438
  24. package/lib/index.d.ts +1 -1
  25. package/package.json +3 -3
  26. package/package.json_devDependencies.json +218 -218
  27. package/package.json_tnp.json5 +35 -35
  28. package/tmp-environment.json +9 -9
  29. package/websql/README.md +24 -24
  30. package/websql/esm2020/lib/config.mjs +770 -770
  31. package/websql/esm2020/lib/index.mjs +3 -3
  32. package/websql/esm2020/public-api.mjs +1 -1
  33. package/websql/esm2020/tnp-config.mjs +4 -4
  34. package/websql/fesm2015/tnp-config.mjs +689 -689
  35. package/websql/fesm2020/tnp-config.mjs +763 -763
  36. package/websql/lib/config.d.ts +228 -228
  37. package/websql/tnp-config.d.ts +4 -4
package/lib/config.d.ts CHANGED
@@ -1,438 +1,438 @@
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
- shared: string;
252
- workspace: string;
253
- container: string;
254
- bin: string;
255
- _bin: string;
256
- _vscode: string;
257
- project: string;
258
- external: string;
259
- tmpDist: string;
260
- tmpFor(d: ConfigModels.OutFolder): string;
261
- targetProjects: {
262
- DEFAULT_PATH_GENERATED: string;
263
- DEFAULT_PATH_ORIGINS: string;
264
- };
265
- };
266
- tempFolders: {
267
- bundle: string;
268
- vendor: string;
269
- docs: string;
270
- dist: string;
271
- tmp: string;
272
- tmpBundleRelease: string;
273
- tempSrc: string;
274
- tempSrcDist: string;
275
- previewDistApp: string;
276
- preview: string;
277
- browser: string;
278
- websql: string;
279
- _browser: string;
280
- module: string;
281
- backup: string;
282
- node_modules: string;
283
- client: string;
284
- tnp_tests_context: string;
285
- tmpPackage: string;
286
- tmpScenarios: string;
287
- tmpTestsEnvironments: string;
288
- testsEnvironments: string;
289
- };
290
- filesNotAllowedToClean: string[];
291
- file: {
292
- _gitignore: string;
293
- _npmrc: string;
294
- _npmignore: string;
295
- tslint_json: string;
296
- _editorconfig: string;
297
- _angularCli_json: string;
298
- _vscode_launch_json: string;
299
- _bowerrc: string;
300
- bower_json: string;
301
- controllers_ts: string;
302
- entities_ts: string;
303
- angular_json: string;
304
- autob_actions_js: string;
305
- local_config_js: string;
306
- build_config_js: string;
307
- local_config: string;
308
- start_backend_ts: string;
309
- package_json: string;
310
- result_packages_json: string;
311
- package_json5: string;
312
- package_json__tnp_json: string;
313
- package_json__tnp_json5: string;
314
- package_json__devDependencies_json: string;
315
- yarn_lock: string;
316
- package_lock_json: string;
317
- tnpEnvironment_json: string;
318
- environment: string;
319
- environment_js: string;
320
- tmp_transaction_pid_txt: string;
321
- manifest_webmanifest: string;
322
- public_api_d_ts: string;
323
- public_api_ts: string;
324
- public_api: string;
325
- _babelrc: string;
326
- index: string;
327
- index_d_ts: string;
328
- index_ts: string;
329
- index_js: string;
330
- index_js_map: string;
331
- db_json: string;
332
- db_for_tests_json: string;
333
- tmpDockerImageId: string;
334
- tmp_recent_json: string;
335
- tmpIsomorphicPackagesJson: string;
336
- tsconfig_json: string;
337
- README_MD: string;
338
- server_key: string;
339
- server_cert: string;
340
- server_chain_cert: string;
341
- meta_config_md: string;
342
- logo_png: string;
343
- logo_svg: string;
344
- };
345
- default: {
346
- cloud: {
347
- environment: {
348
- name: ConfigModels.EnvironmentName;
349
- };
350
- };
351
- };
352
- SUBERIZED_PREFIX: string;
353
- names: {
354
- env: {};
355
- baseline: string;
356
- defaultServer: string;
357
- };
358
- reservedArgumentsNamesUglify: string[];
359
- extensions: {
360
- /**
361
- * Modify source: import,export, requires
362
- */
363
- readonly modificableByReplaceFn: string[];
364
- };
365
- notFiredevProjects: ConfigModels.LibType[];
366
- /**
367
- * Build allowed types
368
- */
369
- allowedTypes: {
370
- /**
371
- * Projects for build:app:watch command
372
- */
373
- app: ConfigModels.LibType[];
374
- /**
375
- * Projects for build:(dist|bundle):(watch) command
376
- */
377
- libs: ConfigModels.LibType[];
378
- };
379
- moduleNameAngularLib: string[];
380
- moduleNameIsomorphicLib: string[];
381
- filesExtensions: {
382
- filetemplate: string;
383
- styles: string[];
384
- };
385
- projectTypes: {
386
- forNpmLibs: string[];
387
- with: {
388
- angularAsCore: string[];
389
- componetsAsSrc: string[];
390
- };
391
- };
392
- localLibs: string[];
393
- helpAlias: string[];
394
- required: {
395
- npm: ({
396
- name: string;
397
- version: string;
398
- installName: string;
399
- } | {
400
- name: string;
401
- version: string;
402
- installName?: undefined;
403
- } | {
404
- name: string;
405
- version?: undefined;
406
- installName?: undefined;
407
- } | {
408
- name: string;
409
- installName: string;
410
- version?: undefined;
411
- })[];
412
- niceTools: ({
413
- name: string;
414
- platform?: undefined;
415
- installName?: undefined;
416
- isNotCli?: undefined;
417
- } | {
418
- name: string;
419
- platform: string;
420
- installName?: undefined;
421
- isNotCli?: undefined;
422
- } | {
423
- name: string;
424
- installName: string;
425
- platform?: undefined;
426
- isNotCli?: undefined;
427
- } | {
428
- name: string;
429
- isNotCli: boolean;
430
- platform?: undefined;
431
- installName?: undefined;
432
- })[];
433
- programs: {
434
- name: string;
435
- website: string;
436
- }[];
437
- };
438
- };
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
+ shared: string;
252
+ workspace: string;
253
+ container: string;
254
+ bin: string;
255
+ _bin: string;
256
+ _vscode: string;
257
+ project: string;
258
+ external: string;
259
+ tmpDist: string;
260
+ tmpFor(d: ConfigModels.OutFolder): string;
261
+ targetProjects: {
262
+ DEFAULT_PATH_GENERATED: string;
263
+ DEFAULT_PATH_ORIGINS: string;
264
+ };
265
+ };
266
+ tempFolders: {
267
+ bundle: string;
268
+ vendor: string;
269
+ docs: string;
270
+ dist: string;
271
+ tmp: string;
272
+ tmpBundleRelease: string;
273
+ tempSrc: string;
274
+ tempSrcDist: string;
275
+ previewDistApp: string;
276
+ preview: string;
277
+ browser: string;
278
+ websql: string;
279
+ _browser: string;
280
+ module: string;
281
+ backup: string;
282
+ node_modules: string;
283
+ client: string;
284
+ tnp_tests_context: string;
285
+ tmpPackage: string;
286
+ tmpScenarios: string;
287
+ tmpTestsEnvironments: string;
288
+ testsEnvironments: string;
289
+ };
290
+ filesNotAllowedToClean: string[];
291
+ file: {
292
+ _gitignore: string;
293
+ _npmrc: string;
294
+ _npmignore: string;
295
+ tslint_json: string;
296
+ _editorconfig: string;
297
+ _angularCli_json: string;
298
+ _vscode_launch_json: string;
299
+ _bowerrc: string;
300
+ bower_json: string;
301
+ controllers_ts: string;
302
+ entities_ts: string;
303
+ angular_json: string;
304
+ autob_actions_js: string;
305
+ local_config_js: string;
306
+ build_config_js: string;
307
+ local_config: string;
308
+ start_backend_ts: string;
309
+ package_json: string;
310
+ result_packages_json: string;
311
+ package_json5: string;
312
+ package_json__tnp_json: string;
313
+ package_json__tnp_json5: string;
314
+ package_json__devDependencies_json: string;
315
+ yarn_lock: string;
316
+ package_lock_json: string;
317
+ tnpEnvironment_json: string;
318
+ environment: string;
319
+ environment_js: string;
320
+ tmp_transaction_pid_txt: string;
321
+ manifest_webmanifest: string;
322
+ public_api_d_ts: string;
323
+ public_api_ts: string;
324
+ public_api: string;
325
+ _babelrc: string;
326
+ index: string;
327
+ index_d_ts: string;
328
+ index_ts: string;
329
+ index_js: string;
330
+ index_js_map: string;
331
+ db_json: string;
332
+ db_for_tests_json: string;
333
+ tmpDockerImageId: string;
334
+ tmp_recent_json: string;
335
+ tmpIsomorphicPackagesJson: string;
336
+ tsconfig_json: string;
337
+ README_MD: string;
338
+ server_key: string;
339
+ server_cert: string;
340
+ server_chain_cert: string;
341
+ meta_config_md: string;
342
+ logo_png: string;
343
+ logo_svg: string;
344
+ };
345
+ default: {
346
+ cloud: {
347
+ environment: {
348
+ name: ConfigModels.EnvironmentName;
349
+ };
350
+ };
351
+ };
352
+ SUBERIZED_PREFIX: string;
353
+ names: {
354
+ env: {};
355
+ baseline: string;
356
+ defaultServer: string;
357
+ };
358
+ reservedArgumentsNamesUglify: string[];
359
+ extensions: {
360
+ /**
361
+ * Modify source: import,export, requires
362
+ */
363
+ readonly modificableByReplaceFn: string[];
364
+ };
365
+ notFiredevProjects: ConfigModels.LibType[];
366
+ /**
367
+ * Build allowed types
368
+ */
369
+ allowedTypes: {
370
+ /**
371
+ * Projects for build:app:watch command
372
+ */
373
+ app: ConfigModels.LibType[];
374
+ /**
375
+ * Projects for build:(dist|bundle):(watch) command
376
+ */
377
+ libs: ConfigModels.LibType[];
378
+ };
379
+ moduleNameAngularLib: string[];
380
+ moduleNameIsomorphicLib: string[];
381
+ filesExtensions: {
382
+ filetemplate: string;
383
+ styles: string[];
384
+ };
385
+ projectTypes: {
386
+ forNpmLibs: string[];
387
+ with: {
388
+ angularAsCore: string[];
389
+ componetsAsSrc: string[];
390
+ };
391
+ };
392
+ localLibs: string[];
393
+ helpAlias: string[];
394
+ required: {
395
+ npm: ({
396
+ name: string;
397
+ version: string;
398
+ installName: string;
399
+ } | {
400
+ name: string;
401
+ version: string;
402
+ installName?: undefined;
403
+ } | {
404
+ name: string;
405
+ version?: undefined;
406
+ installName?: undefined;
407
+ } | {
408
+ name: string;
409
+ installName: string;
410
+ version?: undefined;
411
+ })[];
412
+ niceTools: ({
413
+ name: string;
414
+ platform?: undefined;
415
+ installName?: undefined;
416
+ isNotCli?: undefined;
417
+ } | {
418
+ name: string;
419
+ platform: string;
420
+ installName?: undefined;
421
+ isNotCli?: undefined;
422
+ } | {
423
+ name: string;
424
+ installName: string;
425
+ platform?: undefined;
426
+ isNotCli?: undefined;
427
+ } | {
428
+ name: string;
429
+ isNotCli: boolean;
430
+ platform?: undefined;
431
+ installName?: undefined;
432
+ })[];
433
+ programs: {
434
+ name: string;
435
+ website: string;
436
+ }[];
437
+ };
438
+ };