KC's Workspace
    Preparing search index...

    The information about the chunk being rendered.

    Unlike OutputChunk, code and map are not set as the chunk has not been rendered yet. All referenced chunk file names in each property that would contain hashes will contain hash placeholders instead.

    interface RenderedChunk {
        dynamicImports: string[];
        exports: string[];
        facadeModuleId: string | null;
        fileName: string;
        imports: string[];
        isDynamicEntry: boolean;
        isEntry: boolean;
        moduleIds: string[];
        modules: { [id: string]: RenderedModule };
        name: string;
        type: "chunk";
    }

    Hierarchy (View Summary)

    Index

    Properties

    dynamicImports: string[]

    External modules imported dynamically by this chunk.

    exports: string[]

    Exported variable names from this chunk.

    facadeModuleId: string | null

    The id of a module that this chunk corresponds to.

    fileName: string

    The preliminary file name of this chunk with hash placeholders.

    imports: string[]

    External modules imported statically by this chunk.

    isDynamicEntry: boolean

    Whether this chunk is a dynamic entry point.

    isEntry: boolean

    Whether this chunk is a static entry point.

    moduleIds: string[]

    The list of ids of modules included in this chunk.

    modules: { [id: string]: RenderedModule }

    Information about the modules included in this chunk.

    name: string

    The name of this chunk, which is used in naming patterns.

    type: "chunk"