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