@msobiecki/eslint-config 9.5.0 → 9.6.0

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,10 @@
1
+ # [9.6.0](https://github.com/msobiecki/eslint-config/compare/v9.5.0...v9.6.0) (2025-10-20)
2
+
3
+
4
+ ### Features
5
+
6
+ * update node ([9e695a8](https://github.com/msobiecki/eslint-config/commit/9e695a84a3fd28d11c97ed778c9e490644ff4b90))
7
+
1
8
  # [9.5.0](https://github.com/msobiecki/eslint-config/compare/v9.4.0...v9.5.0) (2025-10-20)
2
9
 
3
10
 
package/eslint.config.js CHANGED
@@ -156,6 +156,11 @@ export const importPreset = [
156
156
  {
157
157
  name: "Import plugin",
158
158
  files: ["**/*.{js,jsx,mjs,cjs}"],
159
+ languageOptions: {
160
+ globals: {
161
+ ...importPlugin.flatConfigs?.recommended?.languageOptions,
162
+ },
163
+ },
159
164
  plugins: { import: importPlugin },
160
165
  rules: {
161
166
  ...importPlugin.flatConfigs?.recommended?.rules,
@@ -164,11 +169,19 @@ export const importPreset = [
164
169
  {
165
170
  name: "Import plugin TypeScript",
166
171
  files: ["**/*.{ts,tsx,mts,cts}"],
172
+ languageOptions: {
173
+ globals: {
174
+ ...importPlugin.flatConfigs?.recommended?.languageOptions,
175
+ },
176
+ },
167
177
  plugins: { import: importPlugin },
168
178
  rules: {
169
179
  ...importPlugin.flatConfigs?.recommended?.rules,
170
180
  ...importPlugin.flatConfigs?.typescript?.rules,
171
181
  },
182
+ settings: {
183
+ ...importPlugin.flatConfigs?.typescript?.settings,
184
+ },
172
185
  },
173
186
  ];
174
187
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@msobiecki/eslint-config",
3
- "version": "9.5.0",
3
+ "version": "9.6.0",
4
4
  "private": false,
5
5
  "description": "An ESLint shareable config for JavaScript/TypeScript ecosystem's.",
6
6
  "keywords": [