Skip to content

Type Alias: ResolvedOptions

ts
type ResolvedOptions = Omit<
  Overwrite<
    MarkPartial<
      Omit<
        Options,
        | 'publicDir'
        | 'workspace'
        | 'filter'
        | 'silent'
        | 'logLevel'
        | 'failOnWarn'
        | 'customLogger'
      >,
      | '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[]
      ignoreWatch: (string | RegExp)[]
      logger: Logger
      nodeProtocol: 'strip' | boolean
      pkg?: PackageJson
      report: false | ReportOptions
      target?: string[]
      tsconfig: string | false
    }
  >,
  'config' | 'fromVite'
>

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

Released under the MIT License.