@juuso.piikkila/eslint-config-typescript 3.0.5 → 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,9 @@
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
+
1
7
  ## [3.0.5](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.4...3.0.5) (2025-03-09)
2
8
 
3
9
  ### Bug Fixes
@@ -194,8 +194,15 @@ module.exports = [
194
194
  },
195
195
  parser: require('vue-eslint-parser'),
196
196
  parserOptions: {
197
- parser: require('@typescript-eslint/parser'),
198
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',
199
206
  },
200
207
  },
201
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.5",
4
+ "version": "3.0.6",
5
5
  "main": "index.cjs",
6
6
  "author": "Juuso Piikkilä",
7
7
  "license": "MIT",