KC's Workspace
    Preparing search index...
    interface EmittedPrebuiltChunk {
        code: string;
        exports?: string[];
        facadeModuleId?: string;
        fileName: string;
        isDynamicEntry?: boolean;
        isEntry?: boolean;
        map?: SourceMap;
        name?: string;
        sourcemapFileName?: string;
        type: "prebuilt-chunk";
    }
    Index

    Properties

    code: string

    The code of this chunk.

    exports?: string[]

    The list of exported variable names from this chunk.

    This should be provided if the chunk exports any variables.

    facadeModuleId?: string

    The module id of the facade module for this chunk, if any.

    fileName: string
    isDynamicEntry?: boolean

    Whether this chunk corresponds to a dynamic entry point.

    isEntry?: boolean

    Whether this chunk corresponds to an entry point.

    map?: SourceMap

    The corresponding source map for this chunk.

    name?: string

    A semantic name for the chunk. If not provided, fileName will be used.

    sourcemapFileName?: string
    type: "prebuilt-chunk"