@dimensional-innovations/tool-config 1.2.1 → 1.2.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dimensional-innovations/tool-config",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Universal configuration package for ESLint, Prettier, Stylelint, and semantic-release with auto-detection for React, Vue, Svelte, Solid, Astro, Angular, and more",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -130,8 +130,18 @@ export default function createVuePreset() {
130
130
  },
131
131
 
132
132
  // Disable TypeScript naming convention for Vue files (allows onUpdate:modelValue pattern)
133
+ // IMPORTANT: Must also set parser to maintain vue-eslint-parser
133
134
  {
134
135
  files: ['**/*.vue'],
136
+ languageOptions: {
137
+ parser: vueParser,
138
+ parserOptions: {
139
+ parser: tseslint.parser,
140
+ extraFileExtensions: ['.vue'],
141
+ ecmaVersion: 'latest',
142
+ sourceType: 'module'
143
+ }
144
+ },
135
145
  rules: {
136
146
  '@typescript-eslint/naming-convention': 'off'
137
147
  }