KC's Workspace
    Preparing search index...
    interface RollupOptions {
        cache?: boolean | RollupCache;
        context?: string;
        experimentalCacheExpiry?: number;
        experimentalLogSideEffects?: boolean;
        external?: ExternalOption;
        fs?: RollupFsModule;
        input?: InputOption;
        jsx?: false | JsxPreset | JsxOptions;
        logLevel?: LogLevelOption;
        makeAbsoluteExternalsRelative?: boolean | "ifRelativeSource";
        maxParallelFileOps?: number;
        moduleContext?:
            | Record<string, string>
            | ((id: string) => string | NullValue);
        onLog?: LogHandlerWithDefault;
        onwarn?: WarningHandlerWithDefault;
        output?: OutputOptions | OutputOptions[];
        perf?: boolean;
        plugins?: InputPluginOption;
        preserveEntrySignatures?: PreserveEntrySignaturesOption;
        preserveSymlinks?: boolean;
        shimMissingExports?: boolean;
        strictDeprecations?: boolean;
        treeshake?: boolean | TreeshakingPreset | TreeshakingOptions;
        watch?: false | WatcherOptions;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cache?: boolean | RollupCache
    context?: string
    experimentalCacheExpiry?: number
    experimentalLogSideEffects?: boolean
    external?: ExternalOption
    input?: InputOption
    jsx?: false | JsxPreset | JsxOptions
    logLevel?: LogLevelOption
    makeAbsoluteExternalsRelative?: boolean | "ifRelativeSource"
    maxParallelFileOps?: number
    moduleContext?: Record<string, string> | ((id: string) => string | NullValue)
    perf?: boolean
    preserveEntrySignatures?: PreserveEntrySignaturesOption
    preserveSymlinks?: boolean
    shimMissingExports?: boolean
    strictDeprecations?: boolean
    treeshake?: boolean | TreeshakingPreset | TreeshakingOptions
    watch?: false | WatcherOptions