@juuso.piikkila/eslint-config-typescript 3.0.4 → 3.0.6

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/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [3.0.6](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.5...3.0.6) (2025-03-09)
2
+
3
+ ### Bug Fixes
4
+
5
+ * update vue config ([c37d533](https://github.com/juusopiikkila/eslint-config-typescript/commit/c37d53374ab8b912a04f86f7db137baf167791d2))
6
+
7
+ ## [3.0.5](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.4...3.0.5) (2025-03-09)
8
+
9
+ ### Bug Fixes
10
+
11
+ * add parser ([d4439d8](https://github.com/juusopiikkila/eslint-config-typescript/commit/d4439d8755476ae0dc56fd38dba2936fb97380ee))
12
+
1
13
  ## [3.0.4](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.3...3.0.4) (2025-03-09)
2
14
 
3
15
  ### Bug Fixes
@@ -192,9 +192,17 @@ module.exports = [
192
192
  globals: {
193
193
  ...globals['shared-node-browser'],
194
194
  },
195
+ parser: require('vue-eslint-parser'),
195
196
  parserOptions: {
196
- parser: require('@typescript-eslint/parser'),
197
197
  project: true,
198
+ // eslint-disable-next-line no-undef
199
+ tsconfigRootDir: __dirname,
200
+ parser: {
201
+ ts: require('@typescript-eslint/parser'),
202
+ '<template>': 'espree',
203
+ },
204
+ extraFileExtensions: ['.vue'],
205
+ sourceType: 'module',
198
206
  },
199
207
  },
200
208
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@juuso.piikkila/eslint-config-typescript",
3
3
  "description": "ESLint config for typescript projects",
4
- "version": "3.0.4",
4
+ "version": "3.0.6",
5
5
  "main": "index.cjs",
6
6
  "author": "Juuso Piikkilä",
7
7
  "license": "MIT",