Member Junction
    Preparing search index...

    A package the loader imported (and whose startup export, if any, it ran).

    interface LoadedDynamicPackage {
        Entry: DynamicPackageEntry;
        Module: Record<string, unknown>;
        RanStartupExport: boolean;
        Source: DynamicPackageSource;
        WorkspaceHome?: WorkspaceHome;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Entry

    Module: Record<string, unknown>

    The imported module namespace — hosts read conventions like RESOLVER_PATHS off it.

    RanStartupExport: boolean

    True when StartupExport named a function and it was invoked by THIS call. False when the entry has no startup export, the named export is missing, or the package was already loaded earlier in this process (the module is still returned; the hook is not run twice).

    WorkspaceHome?: WorkspaceHome

    Present only for 'manifest' entries: lets the loader fall back to importing the workspace member by path when no resolution anchor can see it (pnpm strict layout).