From a87572efd0ee386d8a21753391290bf8e1e6871e Mon Sep 17 00:00:00 2001 From: Karl Horky Date: Wed, 22 Oct 2025 17:47:34 +0200 Subject: [PATCH] Adjust `module` to fix eslint-plugin-react-hooks types --- packages/eslint-plugin-react-hooks/npm/index.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/eslint-plugin-react-hooks/npm/index.d.ts b/packages/eslint-plugin-react-hooks/npm/index.d.ts index 17bdf95c515a9..7516dc1e846e2 100644 --- a/packages/eslint-plugin-react-hooks/npm/index.d.ts +++ b/packages/eslint-plugin-react-hooks/npm/index.d.ts @@ -5,4 +5,6 @@ * LICENSE file in the root directory of this source tree. */ -export * from './cjs/eslint-plugin-react-hooks'; +import reactHooks from './cjs/eslint-plugin-react-hooks'; + +export = reactHooks;