@soleil-se/eslint-config 6.2.3 → 6.2.4
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 +4 -0
- package/package.json +1 -1
- package/typescript.js +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,10 @@ All changes in this repository are noted here.
|
|
|
7
7
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
8
8
|
and the project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
9
9
|
|
|
10
|
+
## [6.2.4] - 2025-05-23
|
|
11
|
+
|
|
12
|
+
* Add import settings for typescript config.
|
|
13
|
+
|
|
10
14
|
## [6.2.3] - 2025-05-16
|
|
11
15
|
|
|
12
16
|
* Adjust sort order for some attributes in Svelte components.
|
package/package.json
CHANGED
package/typescript.js
CHANGED
|
@@ -14,9 +14,18 @@ const svelteTypescript = {
|
|
|
14
14
|
},
|
|
15
15
|
};
|
|
16
16
|
|
|
17
|
+
const importSettings = {
|
|
18
|
+
settings: {
|
|
19
|
+
'import/resolver': {
|
|
20
|
+
typescript: true,
|
|
21
|
+
},
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
|
|
17
25
|
export default tseslint.config(
|
|
18
26
|
...base(),
|
|
19
27
|
tseslint.configs.recommended,
|
|
20
28
|
...await svelte(),
|
|
21
29
|
svelteTypescript,
|
|
30
|
+
importSettings,
|
|
22
31
|
);
|