Skip to content

Type Alias: ResolvedOptions

ts
type ResolvedOptions = Omit<
  Overwrite<
    MarkPartial<
      Omit<Options, "publicDir" | "workspace" | "filter">,
      | "globalName"
      | "inputOptions"
      | "outputOptions"
      | "minify"
      | "define"
      | "alias"
      | "external"
      | "noExternal"
      | "onSuccess"
      | "fixedExtension"
      | "outExtensions"
      | "hooks"
      | "removeNodeProtocol"
      | "copy"
      | "loader"
      | "name"
      | "bundle"
      | "banner"
      | "footer"
    >,
    {
      clean: string[];
      dts: false | DtsOptions;
      exports: false | ExportsOptions;
      format: NormalizedFormat[];
      nodeProtocol: "strip" | boolean;
      pkg?: PackageJson;
      report: false | ReportOptions;
      target?: string[];
      tsconfig: string | false;
    }
  >,
  "config" | "fromVite"
>;

Defined in: src/options/types.ts:410

Released under the MIT License.