Skip to content

Commit

Permalink
fix(plugin-vue): mark SFC compiler options as Partial (#1316)
Browse files Browse the repository at this point in the history
  • Loading branch information
underfin committed Jan 3, 2021
1 parent 96d21ce commit 990f338
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/plugin-vue/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ export interface Options {
isProduction?: boolean

// options to pass on to @vue/compiler-sfc
script?: SFCScriptCompileOptions
template?: SFCTemplateCompileOptions
style?: SFCStyleCompileOptions
script?: Partial<SFCScriptCompileOptions>
template?: Partial<SFCTemplateCompileOptions>
style?: Partial<SFCStyleCompileOptions>
}

export interface ResolvedOptions extends Options {
Expand Down

0 comments on commit 990f338

Please sign in to comment.