@vizejs/vite-plugin 0.114.0 → 0.116.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.
Files changed (2) hide show
  1. package/dist/index.d.mts +11 -3
  2. package/package.json +3 -3
package/dist/index.d.mts CHANGED
@@ -97,7 +97,7 @@ interface LinterConfig {
97
97
  /**
98
98
  * Built-in lint preset
99
99
  */
100
- preset?: "happy-path" | "opinionated" | "essential" | "incremental" | "nuxt";
100
+ preset?: "happy-path" | "opinionated" | "essential" | "incremental" | "ecosystem" | "nuxt";
101
101
  /**
102
102
  * Rules to enable/disable
103
103
  */
@@ -161,7 +161,11 @@ interface TypeCheckerConfig {
161
161
  */
162
162
  tsconfig?: string;
163
163
  /**
164
- * Path to tsgo binary
164
+ * Path to the Corsa executable. This is the canonical runtime key; tsgoPath is kept as a compatibility alias.
165
+ */
166
+ corsaPath?: string;
167
+ /**
168
+ * Deprecated alias for typeChecker.corsaPath
165
169
  */
166
170
  tsgoPath?: string;
167
171
  /**
@@ -169,7 +173,7 @@ interface TypeCheckerConfig {
169
173
  */
170
174
  globalsFile?: string;
171
175
  /**
172
- * Number of parallel Corsa servers to use
176
+ * Reserved Corsa server count. The direct project-session runner currently supports only 1.
173
177
  */
174
178
  servers?: number;
175
179
  }
@@ -286,6 +290,10 @@ interface LanguageServerConfig {
286
290
  * Enable editor-oriented IDE features
287
291
  */
288
292
  editor?: boolean;
293
+ /**
294
+ * Enable Vue ecosystem lint and editor helpers
295
+ */
296
+ ecosystem?: boolean;
289
297
  /**
290
298
  * Enable completions
291
299
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vizejs/vite-plugin",
3
- "version": "0.114.0",
3
+ "version": "0.116.0",
4
4
  "description": "High-performance native Vite plugin for Vue SFC compilation powered by Vize",
5
5
  "keywords": [
6
6
  "compiler",
@@ -37,9 +37,9 @@
37
37
  "access": "public"
38
38
  },
39
39
  "dependencies": {
40
- "@vizejs/native": "0.114.0",
40
+ "@vizejs/native": "0.116.0",
41
41
  "tinyglobby": "0.2.16",
42
- "vize": "0.114.0"
42
+ "vize": "0.116.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/node": "25.7.0",