KC's Workspace
    Preparing search index...
    interface PackageData {
        data: {
            browser: string | Record<string, string | false>;
            dependencies: Record<string, string>;
            exports: string | string[] | Record<string, any>;
            imports: Record<string, any>;
            main: string;
            module: string;
            name: string;
            type: string;
            version: string;
            [field: string]: any;
        };
        dir: string;
        getResolvedCache: (
            key: string,
            options: InternalResolveOptions,
        ) => string | undefined;
        hasSideEffects: (id: string) => boolean | "no-treeshake" | null;
        setResolvedCache: (
            key: string,
            entry: string,
            options: InternalResolveOptions,
        ) => void;
    }
    Index

    Properties

    data: {
        browser: string | Record<string, string | false>;
        dependencies: Record<string, string>;
        exports: string | string[] | Record<string, any>;
        imports: Record<string, any>;
        main: string;
        module: string;
        name: string;
        type: string;
        version: string;
        [field: string]: any;
    }
    dir: string
    getResolvedCache: (
        key: string,
        options: InternalResolveOptions,
    ) => string | undefined
    hasSideEffects: (id: string) => boolean | "no-treeshake" | null
    setResolvedCache: (
        key: string,
        entry: string,
        options: InternalResolveOptions,
    ) => void