tnp-config 13.1.75 → 13.1.76

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