KC's Workspace
    Preparing search index...
    interface NormalizedInputOptions {
        cache: false | RollupCache | undefined;
        context: string;
        experimentalCacheExpiry: number;
        experimentalLogSideEffects: boolean;
        external: IsExternal;
        fs: RollupFsModule;
        input: Record<string, string> | string[];
        jsx: false | NormalizedJsxOptions;
        logLevel: LogLevelOption;
        makeAbsoluteExternalsRelative: boolean | "ifRelativeSource";
        maxParallelFileOps: number;
        moduleContext: (id: string) => string;
        onLog: LogHandler;
        perf: boolean;
        plugins: Plugin<any>[];
        preserveEntrySignatures: PreserveEntrySignaturesOption;
        preserveSymlinks: boolean;
        shimMissingExports: boolean;
        strictDeprecations: boolean;
        treeshake: false | NormalizedTreeshakingOptions;
    }
    Index

    Properties

    cache: false | RollupCache | undefined
    context: string
    experimentalCacheExpiry: number
    experimentalLogSideEffects: boolean
    external: IsExternal
    input: Record<string, string> | string[]
    logLevel: LogLevelOption
    makeAbsoluteExternalsRelative: boolean | "ifRelativeSource"
    maxParallelFileOps: number
    moduleContext: (id: string) => string
    onLog: LogHandler
    perf: boolean
    plugins: Plugin<any>[]
    preserveEntrySignatures: PreserveEntrySignaturesOption
    preserveSymlinks: boolean
    shimMissingExports: boolean
    strictDeprecations: boolean
    treeshake: false | NormalizedTreeshakingOptions