tnp-core 18.0.15 → 18.0.16

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.
@@ -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
  }