@@ -44,7 +44,6 @@ export interface Options {
4444 | 'defineModel'
4545 | 'propsDestructure'
4646 | 'fs'
47- | 'reactivityTransform'
4847 | 'hoistStatic'
4948 >
5049 >
@@ -69,23 +68,6 @@ export interface Options {
6968 */
7069 customElement ?: boolean | string | RegExp | ( string | RegExp ) [ ]
7170
72- /**
73- * Enable Vue reactivity transform (experimental).
74- * https://vuejs.org/guide/extras/reactivity-transform.html
75- * - `true`: transform will be enabled for all vue,js(x),ts(x) files except
76- * those inside node_modules
77- * - `string | RegExp`: apply to vue + only matched files (will include
78- * node_modules, so specify directories if necessary)
79- * - `false`: disable in all cases
80- *
81- * @deprecated the Reactivity Transform proposal has been dropped. This
82- * feature will be removed from Vue core in 3.4. If you intend to continue
83- * using it, disable this and switch to the [Vue Macros implementation](https://vue-macros.sxzz.moe/features/reactivity-transform.html).
84- *
85- * @default false
86- */
87- reactivityTransform ?: boolean | string | RegExp | ( string | RegExp ) [ ]
88-
8971 /**
9072 * Use custom compiler-sfc instance. Can be used to force a specific version.
9173 */
@@ -107,7 +89,6 @@ export default function vuePlugin(rawOptions: Options = {}): Plugin {
10789 compiler : null as any , // to be set in buildStart
10890 include : / \. v u e $ / ,
10991 customElement : / \. c e \. v u e $ / ,
110- reactivityTransform : false ,
11192 ...rawOptions ,
11293 root : process . cwd ( ) ,
11394 sourceMap : true ,
0 commit comments