diff --git a/.changeset/friendly-weeks-act.md b/.changeset/friendly-weeks-act.md deleted file mode 100644 index 2ef9b97..0000000 --- a/.changeset/friendly-weeks-act.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"eslint-import-resolver-typescript": major ---- - -feat!: rewrite, speed up by using [`rspack-resolver`](https://github.com/unrs/rspack-resolver) which supports `references` natively under the hood - -BREAKING CHANGES: - -- drop Node 14 support, Node `^16.17.0 || >=18.6` is now required -- `alwaysTryTypes` is enabled by default, you can set it as `true` to opt-out -- array type of `project` is discouraged but still supported, single `project` with `references` are encouraged for better performance, you can enable `noWarnOnMultipleProjects` option to supress the warning message -- root `tsconfig.json` or `jsconfig.json` will be used automatically if no `project` provided diff --git a/CHANGELOG.md b/CHANGELOG.md index b003989..3192f4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.0.0 + +### Major Changes + +- [#368](https://github.com/import-js/eslint-import-resolver-typescript/pull/368) [`2fd7c2e`](https://github.com/import-js/eslint-import-resolver-typescript/commit/2fd7c2ea63f30c9990e19a52dbd07fd8131558e9) Thanks [@JounQin](https://github.com/JounQin)! - feat!: rewrite, speed up by using [`rspack-resolver`](https://github.com/unrs/rspack-resolver) which supports `references` natively under the hood + + BREAKING CHANGES: + + - drop Node 14 support, Node `^16.17.0 || >=18.6` is now required + - `alwaysTryTypes` is enabled by default, you can set it as `false` to opt-out + - array type of `project` is discouraged but still supported, single `project` with `references` are encouraged for better performance, you can enable `noWarnOnMultipleProjects` option to supress the warning message + - root `tsconfig.json` or `jsconfig.json` will be used automatically if no `project` provided + ## 3.9.1 ### Patch Changes diff --git a/package.json b/package.json index 7ea3953..9f2f713 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-import-resolver-typescript", - "version": "3.9.1", + "version": "4.0.0", "type": "module", "description": "This plugin adds `TypeScript` support to `eslint-plugin-import`", "repository": "git+https://github.com/import-js/eslint-import-resolver-typescript",