@vizejs/vite-plugin 0.47.0 → 0.49.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 -1
  2. package/package.json +3 -3
package/dist/index.d.mts CHANGED
@@ -88,6 +88,11 @@ interface VitePluginConfig {
88
88
  ignorePatterns?: string[];
89
89
  }
90
90
  //#endregion
91
+ //#region ../vize/src/types/rules.d.ts
92
+ declare const LINT_RULE_NAMES: readonly ["a11y/alt-text", "a11y/anchor-has-content", "a11y/anchor-is-valid", "a11y/aria-props", "a11y/aria-role", "a11y/aria-unsupported-elements", "a11y/click-events-have-key-events", "a11y/form-control-has-label", "a11y/heading-has-content", "a11y/heading-levels", "a11y/iframe-has-title", "a11y/img-alt", "a11y/interactive-supports-focus", "a11y/label-has-for", "a11y/landmark-roles", "a11y/media-has-caption", "a11y/mouse-events-have-key-events", "a11y/no-access-key", "a11y/no-aria-hidden-on-focusable", "a11y/no-autofocus", "a11y/no-distracting-elements", "a11y/no-i-for-icon", "a11y/no-redundant-roles", "a11y/no-refer-to-non-existent-id", "a11y/no-role-presentation-on-focusable", "a11y/no-static-element-interactions", "a11y/placeholder-label-option", "a11y/role-has-required-aria-props", "a11y/tabindex-no-positive", "a11y/use-list", "html/deprecated-attr", "html/deprecated-element", "html/id-duplication", "html/no-consecutive-br", "html/no-duplicate-dt", "html/no-empty-palpable-content", "html/require-datetime", "script/no-get-current-instance", "script/no-next-tick", "script/no-options-api", "ssr/no-browser-globals-in-ssr", "ssr/no-hydration-mismatch", "type/no-floating-promises", "type/no-unsafe-template-binding", "type/require-typed-emits", "type/require-typed-props", "vapor/no-inline-template", "vapor/no-suspense", "vapor/no-vue-lifecycle-events", "vapor/prefer-static-class", "vapor/require-vapor-attribute", "vue/attribute-hyphenation", "vue/attribute-order", "vue/component-definition-name-casing", "vue/component-name-in-template-casing", "vue/html-quotes", "vue/html-self-closing", "vue/multi-word-component-names", "vue/mustache-interpolation-spacing", "vue/no-boolean-attr-value", "vue/no-child-content", "vue/no-dupe-v-else-if", "vue/no-duplicate-attributes", "vue/no-inline-style", "vue/no-lone-template", "vue/no-multi-spaces", "vue/no-mutating-props", "vue/no-preprocessor-lang", "vue/no-reserved-component-names", "vue/no-script-non-standard-lang", "vue/no-src-attribute", "vue/no-template-key", "vue/no-template-lang", "vue/no-template-shadow", "vue/no-textarea-mustache", "vue/no-unsafe-url", "vue/no-unused-components", "vue/no-unused-properties", "vue/no-unused-vars", "vue/no-use-v-if-with-v-for", "vue/no-useless-template-attributes", "vue/no-v-html", "vue/no-v-text-v-html-on-component", "vue/permitted-contents", "vue/prefer-props-shorthand", "vue/prop-name-casing", "vue/require-component-is", "vue/require-component-registration", "vue/require-scoped-style", "vue/require-v-for-key", "vue/scoped-event-names", "vue/sfc-element-order", "vue/single-style-block", "vue/use-unique-element-ids", "vue/use-v-on-exact", "vue/v-bind-style", "vue/v-on-style", "vue/v-slot-style", "vue/valid-attribute-name", "vue/valid-v-bind", "vue/valid-v-else", "vue/valid-v-for", "vue/valid-v-if", "vue/valid-v-memo", "vue/valid-v-model", "vue/valid-v-on", "vue/valid-v-show", "vue/valid-v-slot", "vue/warn-custom-block", "vue/warn-custom-directive"];
93
+ type LintRuleName = (typeof LINT_RULE_NAMES)[number];
94
+ type LintRulesConfig = Partial<Record<LintRuleName, RuleSeverity>>;
95
+ //#endregion
91
96
  //#region ../vize/src/types/tools.d.ts
92
97
  /**
93
98
  * Linter configuration
@@ -105,7 +110,7 @@ interface LinterConfig {
105
110
  /**
106
111
  * Rules to enable/disable
107
112
  */
108
- rules?: Record<string, RuleSeverity>;
113
+ rules?: LintRulesConfig;
109
114
  /**
110
115
  * Category-level severity overrides
111
116
  */
@@ -224,6 +229,11 @@ interface LspConfig {
224
229
  * @default true
225
230
  */
226
231
  codeActions?: boolean;
232
+ /**
233
+ * Enable type checking diagnostics and type-aware LSP features
234
+ * @default true
235
+ */
236
+ typecheck?: boolean;
227
237
  /**
228
238
  * Use Corsa for type checking in LSP
229
239
  * @default false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vizejs/vite-plugin",
3
- "version": "0.47.0",
3
+ "version": "0.49.0",
4
4
  "description": "High-performance native Vite plugin for Vue SFC compilation powered by Vize",
5
5
  "keywords": [
6
6
  "compiler",
@@ -34,8 +34,8 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "tinyglobby": "^0.2.0",
37
- "vize": "0.47.0",
38
- "@vizejs/native": "0.47.0"
37
+ "vize": "0.49.0",
38
+ "@vizejs/native": "0.49.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@types/node": "^22.0.0",