@vizejs/vite-plugin 0.138.0 → 0.139.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +8 -0
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -184,6 +184,10 @@ interface TypeCheckerConfig {
|
|
|
184
184
|
* Check fallthrough attrs on multi-root templates
|
|
185
185
|
*/
|
|
186
186
|
checkFallthroughAttrs?: boolean;
|
|
187
|
+
/**
|
|
188
|
+
* Enable Vue 2.7 / Nuxt 2 Options API template binding support
|
|
189
|
+
*/
|
|
190
|
+
legacyVue2?: boolean;
|
|
187
191
|
/**
|
|
188
192
|
* Path to tsconfig.json
|
|
189
193
|
*/
|
|
@@ -322,6 +326,10 @@ interface LanguageServerConfig {
|
|
|
322
326
|
* Enable Vue ecosystem lint and editor helpers
|
|
323
327
|
*/
|
|
324
328
|
ecosystem?: boolean;
|
|
329
|
+
/**
|
|
330
|
+
* Enable Vue 2.7 / Nuxt 2 editor and type-checking compatibility
|
|
331
|
+
*/
|
|
332
|
+
legacyVue2?: boolean;
|
|
325
333
|
/**
|
|
326
334
|
* Enable completions
|
|
327
335
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vizejs/vite-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.139.0",
|
|
4
4
|
"description": "High-performance native Vite plugin for Vue SFC compilation powered by Vize",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"compiler",
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@vizejs/native": "0.
|
|
42
|
+
"@vizejs/native": "0.139.0",
|
|
43
43
|
"tinyglobby": "0.2.16",
|
|
44
|
-
"vize": "0.
|
|
44
|
+
"vize": "0.139.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/node": "25.7.0",
|