File tree 1 file changed +36
-11
lines changed
1 file changed +36
-11
lines changed Original file line number Diff line number Diff line change @@ -24,27 +24,52 @@ export interface Options {
24
24
25
25
// options to pass on to vue/compiler-sfc
26
26
script? : Partial <
27
- Pick <
27
+ Omit <
28
28
SFCScriptCompileOptions ,
29
- | ' babelParserPlugins'
30
- | ' globalTypeFiles'
29
+ | ' id'
30
+ | ' isProd'
31
+ | ' inlineTemplate'
32
+ | ' templateOptions'
33
+ | ' sourceMap'
34
+ | ' genDefaultAs'
35
+ | ' customElement'
31
36
| ' defineModel'
32
- | ' propsDestructure'
33
- | ' fs'
34
37
>
35
38
>
36
39
37
40
template? : Partial <
38
- Pick <
41
+ Omit <
39
42
SFCTemplateCompileOptions ,
40
- | ' compiler'
41
- | ' compilerOptions'
42
- | ' preprocessOptions'
43
+ | ' id'
44
+ | ' source'
45
+ | ' ast'
46
+ | ' filename'
47
+ | ' scoped'
48
+ | ' slotted'
49
+ | ' isProd'
50
+ | ' inMap'
51
+ | ' ssr'
52
+ | ' ssrCssVars'
53
+ | ' preprocessLang'
54
+ >
55
+ >
56
+ style? : Partial <
57
+ Omit <
58
+ SFCStyleCompileOptions ,
59
+ | ' filename'
60
+ | ' id'
61
+ | ' isProd'
62
+ | ' source'
63
+ | ' scoped'
64
+ | ' cssDevSourcemap'
65
+ | ' postcssOptions'
66
+ | ' map'
67
+ | ' postcssPlugins'
43
68
| ' preprocessCustomRequire'
44
- | ' transformAssetUrls'
69
+ | ' preprocessLang'
70
+ | ' preprocessOptions'
45
71
>
46
72
>
47
- style? : Partial <Pick <SFCStyleCompileOptions , ' trim' >>
48
73
49
74
/**
50
75
* Transform Vue SFCs into custom elements.
You can’t perform that action at this time.
0 commit comments