UNPKG

projen

Version:

CDK for software projects

20 lines (19 loc) 655 B
import { Component } from "./component"; import { JsonFile } from "./json"; import { Project } from "./project"; /** * Generates a `.projen/tree.json` file that provides a snapshot of your * project's component hierarchy. This file includes metadata about each * component such as file paths, types, and the projen version used. * * The tree file is helpful for: * - Understanding how your project is structured * - Debugging component relationships * - Verifying which versions synthesized the project * * @stability experimental */ export declare class ProjectTree extends Component { file: JsonFile; constructor(project: Project); }