@foray1010/eslint-config 17.0.0 → 17.0.1

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
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [17.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/eslint-config@17.0.0...@foray1010/eslint-config@17.0.1) (2026-05-25)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **eslint-config:** allow import ts extensions
11
+
6
12
  ## [17.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/eslint-config@16.1.0...@foray1010/eslint-config@17.0.0) (2026-05-17)
7
13
 
8
14
  ### ⚠ BREAKING CHANGES
package/bases/base.mjs CHANGED
@@ -201,15 +201,6 @@ const baseConfig = defineConfig(
201
201
  'error',
202
202
  // https://nodejs.org/docs/latest-v14.x/api/esm.html#esm_mandatory_file_extensions
203
203
  'always',
204
- {
205
- pattern: {
206
- // eslint-plugin-import does not support checking es modules in typescript files
207
- cts: 'never',
208
- mts: 'never',
209
- ts: 'never',
210
- tsx: 'never',
211
- },
212
- },
213
204
  ],
214
205
  // make sure import statements above the others
215
206
  'import-x/first': 'error',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@foray1010/eslint-config",
4
- "version": "17.0.0",
4
+ "version": "17.0.1",
5
5
  "homepage": "https://github.com/foray1010/common-presets/tree/master/packages/eslint-config#readme",
6
6
  "bugs": "https://github.com/foray1010/common-presets/issues",
7
7
  "repository": {
@@ -66,5 +66,5 @@
66
66
  "publishConfig": {
67
67
  "access": "public"
68
68
  },
69
- "gitHead": "b0dcdf4522afb97a5ee7088c20299aad17738056"
69
+ "gitHead": "1176be02469801226d77eb47558df78176583735"
70
70
  }