tnp-core 18.0.15 → 18.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/shared/shared_folder_info.txt +1 -1
- package/browser/esm2022/lib/core-models.mjs +1 -1
- package/browser/fesm2022/tnp-core.mjs.map +1 -1
- package/browser/lib/core-models.d.ts +30 -0
- package/cli.backend.js +2 -2
- package/client/esm2022/lib/core-models.mjs +1 -1
- package/client/fesm2022/tnp-core.mjs.map +1 -1
- package/client/lib/core-models.d.ts +30 -0
- package/lib/core-models.d.ts +30 -0
- package/lib/core-models.js.map +1 -1
- package/lib/node-chalk-mock.js +2 -2
- package/lib/node-path-mock.js +2 -2
- package/package.json +2 -2
- package/tmp-environment.json +6 -6
- package/websql/esm2022/lib/core-models.mjs +1 -1
- package/websql/fesm2022/tnp-core.mjs.map +1 -1
- package/websql/lib/core-models.d.ts +30 -0
@@ -377,5 +377,35 @@ export declare namespace CoreModels {
|
|
377
377
|
compilerOptions: CompilerOptions;
|
378
378
|
angularCompilerOptions: AngularCompilerOptions;
|
379
379
|
}
|
380
|
+
export interface FiredevJson {
|
381
|
+
type: CoreModels.LibType;
|
382
|
+
version?: CoreModels.FrameworkVersion;
|
383
|
+
smartContainerBuildTarget?: string;
|
384
|
+
smart?: boolean;
|
385
|
+
monorepo?: boolean;
|
386
|
+
libReleaseOptions: {
|
387
|
+
cliBuildObscure?: boolean;
|
388
|
+
cliBuildUglify?: boolean;
|
389
|
+
cliBuildNoDts?: boolean;
|
390
|
+
cliBuildIncludeNodeModules?: boolean;
|
391
|
+
};
|
392
|
+
/**
|
393
|
+
* project is template for other project
|
394
|
+
*/
|
395
|
+
isCoreProject: boolean;
|
396
|
+
scripts?: {
|
397
|
+
[script in string]: string;
|
398
|
+
};
|
399
|
+
description?: string;
|
400
|
+
license?: string;
|
401
|
+
private?: boolean;
|
402
|
+
author?: string;
|
403
|
+
homepage?: string;
|
404
|
+
overrided: {
|
405
|
+
dependencies?: {
|
406
|
+
[name: string]: string;
|
407
|
+
};
|
408
|
+
};
|
409
|
+
}
|
380
410
|
export {};
|
381
411
|
}
|