@juuso.piikkila/eslint-config-typescript 3.0.5 → 3.0.7
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 +12 -0
- package/configurations/vue/index.cjs +6 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [3.0.7](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.6...3.0.7) (2025-03-09)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* remove tsconfigRootDir ([d3aac1f](https://github.com/juusopiikkila/eslint-config-typescript/commit/d3aac1f26a9cc1d562faf3f2f3712048b6c8f46b))
|
|
6
|
+
|
|
7
|
+
## [3.0.6](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.5...3.0.6) (2025-03-09)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* update vue config ([c37d533](https://github.com/juusopiikkila/eslint-config-typescript/commit/c37d53374ab8b912a04f86f7db137baf167791d2))
|
|
12
|
+
|
|
1
13
|
## [3.0.5](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.4...3.0.5) (2025-03-09)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
|
@@ -194,8 +194,13 @@ 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
|
+
parser: {
|
|
199
|
+
ts: require('@typescript-eslint/parser'),
|
|
200
|
+
'<template>': 'espree',
|
|
201
|
+
},
|
|
202
|
+
extraFileExtensions: ['.vue'],
|
|
203
|
+
sourceType: 'module',
|
|
199
204
|
},
|
|
200
205
|
},
|
|
201
206
|
},
|