tnp-config 13.1.72 → 13.1.74

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 (44) 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 +771 -771
  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/fesm2015/tnp-config.mjs.map +1 -1
  10. package/browser/fesm2020/tnp-config.mjs +763 -763
  11. package/browser/fesm2020/tnp-config.mjs.map +1 -1
  12. package/browser/lib/config.d.ts +227 -228
  13. package/browser/tnp-config.d.ts +4 -4
  14. package/client/README.md +24 -24
  15. package/client/esm2020/lib/config.mjs +771 -771
  16. package/client/esm2020/lib/index.mjs +3 -3
  17. package/client/esm2020/public-api.mjs +1 -1
  18. package/client/esm2020/tnp-config.mjs +4 -4
  19. package/client/fesm2015/tnp-config.mjs +689 -689
  20. package/client/fesm2015/tnp-config.mjs.map +1 -1
  21. package/client/fesm2020/tnp-config.mjs +763 -763
  22. package/client/fesm2020/tnp-config.mjs.map +1 -1
  23. package/client/lib/config.d.ts +227 -228
  24. package/client/package.json +42 -41
  25. package/client/tnp-config.d.ts +4 -4
  26. package/index.d.ts +1 -1
  27. package/lib/config.d.ts +437 -438
  28. package/lib/config.js.map +1 -1
  29. package/lib/index.d.ts +1 -1
  30. package/package.json +3 -3
  31. package/package.json_devDependencies.json +218 -218
  32. package/package.json_tnp.json5 +35 -35
  33. package/tmp-environment.json +47 -45
  34. package/websql/README.md +24 -24
  35. package/websql/esm2020/lib/config.mjs +771 -771
  36. package/websql/esm2020/lib/index.mjs +3 -3
  37. package/websql/esm2020/public-api.mjs +1 -1
  38. package/websql/esm2020/tnp-config.mjs +4 -4
  39. package/websql/fesm2015/tnp-config.mjs +689 -689
  40. package/websql/fesm2015/tnp-config.mjs.map +1 -1
  41. package/websql/fesm2020/tnp-config.mjs +763 -763
  42. package/websql/fesm2020/tnp-config.mjs.map +1 -1
  43. package/websql/lib/config.d.ts +227 -228
  44. package/websql/tnp-config.d.ts +4 -4
package/lib/config.d.ts CHANGED
@@ -1,438 +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
- 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 DatabaseType = 'better-sqlite3' | 'mysql';
40
+ }
41
+ export declare const GlobalLibTypeName: {
42
+ isomorphicLib: string;
43
+ angularLib: string;
44
+ electronClient: string;
45
+ ionicLib: string;
46
+ angularClient: string;
47
+ ionicClient: string;
48
+ workspace: string;
49
+ container: string;
50
+ docker: string;
51
+ unknowNpmProject: string;
52
+ vscodeExt: string;
53
+ chromeExt: string;
54
+ singleFileProject: string;
55
+ navi: string;
56
+ scenario: string;
57
+ };
58
+ export declare const LibTypeArr: ConfigModels.LibType[];
59
+ export declare const CoreLibCategoryArr: ConfigModels.CoreLibCategory[];
60
+ export declare const config: {
61
+ packagesThat: {
62
+ areTrustedForPatchUpdate: string[];
63
+ };
64
+ readonly dbLocation: string;
65
+ coreProjectVersions: string[];
66
+ quickFixes: {
67
+ missingLibs: any[];
68
+ };
69
+ packageJsonSplit: string[];
70
+ regexString: {
71
+ pathPartStringRegex: string;
72
+ };
73
+ placeholders: {
74
+ forProjectsInEnvironmentFile: string;
75
+ };
76
+ array: {
77
+ isomorphicPackages: string;
78
+ };
79
+ defaultFrameworkVersion: ConfigModels.FrameworkVersion;
80
+ CONST: {
81
+ UNIT_TEST_TIMEOUT: number;
82
+ INTEGRATION_TEST: number;
83
+ BACKEND_HTTP_REQUEST_TIMEOUT: number;
84
+ };
85
+ debug: {
86
+ sourceModifier: any[];
87
+ baselineSiteJoin: {
88
+ DEBUG_PATHES: any[];
89
+ DEBUG_MERGE_PATHES: any[];
90
+ };
91
+ };
92
+ frameworkName: "firedev" | "tnp";
93
+ frameworkNames: {
94
+ tnp: string;
95
+ firedev: string;
96
+ };
97
+ startPort: number;
98
+ frameworks: ConfigModels.UIFramework[];
99
+ tempFiles: {
100
+ FILE_NAME_ISOMORPHIC_PACKAGES: string;
101
+ };
102
+ OVERRIDE_FROM_TNP: string[];
103
+ morphiPathUserInUserDir: string;
104
+ urlMorphi: string;
105
+ argsReplacementsBuild: {
106
+ ba: string;
107
+ baw: string;
108
+ bw: string;
109
+ sw: string;
110
+ bda: string;
111
+ bdap: string;
112
+ bd: string;
113
+ bdw: string;
114
+ bba: string;
115
+ bbap: string;
116
+ bb: string;
117
+ bbw: string;
118
+ };
119
+ argsGlobalFlags: string[];
120
+ argsReplacements: {
121
+ ghpush: string;
122
+ ghpull: string;
123
+ l: string;
124
+ sl: string;
125
+ lb: string;
126
+ i: string;
127
+ si: string;
128
+ il: string;
129
+ rc: string;
130
+ rp: string;
131
+ r: string;
132
+ rmajor: string;
133
+ rminor: string;
134
+ 'r:major': string;
135
+ 'r:minor': string;
136
+ ar: string;
137
+ ard: 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
+ shared: 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
+ };