We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93c444c commit 1e8d16eCopy full SHA for 1e8d16e
packages/plugin-vue/README.md
@@ -23,7 +23,18 @@ export interface Options {
23
isProduction?: boolean
24
25
// options to pass on to vue/compiler-sfc
26
- script?: Partial<Pick<SFCScriptCompileOptions, 'babelParserPlugins'>>
+ script?: Partial<
27
+ Pick<
28
+ SFCScriptCompileOptions,
29
+ | 'babelParserPlugins'
30
+ | 'globalTypeFiles'
31
+ | 'defineModel'
32
+ | 'propsDestructure'
33
+ | 'fs'
34
+ | 'reactivityTransform'
35
+ >
36
37
+
38
template?: Partial<
39
Pick<
40
SFCTemplateCompileOptions,
packages/plugin-vue/src/index.ts
@@ -34,6 +34,7 @@ export interface Options {
SFCScriptCompileOptions,
| 'babelParserPlugins'
| 'defineModel'
| 'propsDestructure'
| 'fs'
0 commit comments