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

Properties

cache: undefined | false | RollupCache
context: string
experimentalCacheExpiry: number
experimentalLogSideEffects: boolean
external: IsExternal
input: string[] | {
    [entryAlias: string]: string;
}

Type declaration

  • [entryAlias: string]: string
logLevel: LogLevelOption
makeAbsoluteExternalsRelative: boolean | "ifRelativeSource"
maxParallelFileOps: number
moduleContext: ((id) => string)

Type declaration

    • (id): string
    • Parameters

      • id: string

      Returns string

onLog: LogHandler
perf: boolean
plugins: Plugin<any>[]
preserveEntrySignatures: PreserveEntrySignaturesOption
preserveSymlinks: boolean
shimMissingExports: boolean
strictDeprecations: boolean
treeshake: false | NormalizedTreeshakingOptions