Description
Versions: all
Severity: low
What
When imported in a TypeScript environment, eslint-plugin-react-hooks
throws a "missing type declarations" error.
Why
This is because eslint-plugin-react-hooks
does not have any type declarations bundled in the package. These would usually be in an index.d.ts
file.
Also, eslint-plugin-react-hooks
does not have a corresponding @types/...
package in the DefinitelyTyped project for users to rely on.
Workaround
Users can follow the instructions in the error message and make a temporary module augmentation to declare their own types for the package.
In my personal project, I've done it this way:
// ./src/@types/eslint-plugin-react-hooks.d.ts
declare module 'eslint-plugin-react-hooks' {
import type { ESLint } from 'eslint';
const plugin: Omit<ESLint.Plugin, 'configs'> & {
// eslint-plugin-react-hooks does not use FlatConfig yet
configs: Record<string, ESLint.ConfigData>;
};
export default plugin;
}
But this will not automatically stay up-to-date with the package and is not guaranteed to be correct. Is it also incomplete and does not contain detailed information about the different configs in the plugin.
How to fix
There are several ways.
-
Usually the preferred solution is just to write everything in TypeScript and let it auto-generate declaration files for you. But I understand if a complete rewrite is not on the table :)
-
You could add a
@types/eslint-plugin-react-hooks
package in the DefinitelyTyped repo. But then your types would be defined in a completely different place from your actual code, and if you ever decide to migrate to TypeScript in the future, the old@types/...
package would need to be deprecated. Sounds messy. -
Best solution, in my opinion. Just add a
index.d.ts
file to the package that declare the type exports of the package. Then define it as the type declarations inpackage.json
. Easy peasy.
// package.json
+ "main": "index.js",
+ "types": "index.d.ts",
"files": [
"LICENSE",
"README.md",
"index.js",
+ "index.d.ts",
"cjs"
],
I would be happy to do this myself. I just wanted to submit an issue first to confirm that the maintainers would approve.
Steps To Reproduce
- Install
typescript
,eslint-plugin-react-hooks
- Create a
.ts
file - Import
eslint-plugin-react-hooks
Code example
package.json
{
"scripts": {
"build": "tsc"
},
"dependencies": {
"eslint-plugin-react-hooks": "^4.6.2"
},
"devDependencies": {
"typescript": "^5.5.2"
}
}
index.ts
import reactHooksPlugin from 'eslint-plugin-react-hooks';
(You'll need a tsconfig.json
file too, but the settings are irrelevant to this example)
The current behavior
TypeScript build error.
The expected behavior
No errors.