-
-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeScript error when require eslint-plugin-jsdoc in a CommonJS file #1223
Comments
I checked the TypeScript
|
Hmm, this is potentially tricky. TypeScript is not the tool for generating multiple versions of definition files. They recommend you generate one of ESM/CJS from your TypeScript and then use a tool to transpile the files for the other, like Babel (as used here). But that process includes generating both the JavaScript files and the type definition files. And Babel only generates the JavaScript and not the definition file. More investigation required... |
I'm working on fixing this, I should have a PR ready soon. |
Just out of curiosity, would you guys be open to a full-on TypeScript migration? I can fix this issue and handle the migration (it wouldn't be that difficult since we already have the types in JSDoc). If you give me the thumbs up, I can go ahead and get started on it. |
It's up to @gajus , but I'd personally hope for it to remain as TS-flavored JavaScript. |
@brettz9 We might be able to keep the TS-flavored JavaScript, but it's so much easier to make the switch. Here is a before and after: Before:After: |
Expected behavior
Able to use TypeScript for type checking in a CommonJS file which imports
eslint-plugin-jdocs
(usingrequire
).Actual behavior
TypeScript fails on the require line for
eslint-plugin-jdocs
in a CommonJS file.My understanding of the problem is that TypeScript best practice is a definition file corresponds to a single JavaScript file. I am guessing when TypeScript finds the
types
file for eslint-plugin-jdocs of./dist/index.d.ts
, it assumes the corresponding JavaScript file will be the esm flavour since eslint-plugin-jdocs has"type": "module"
and the.d.ts
is therefore implicitly esm.There is a project which champions technically correct TypeScript setups and picks up a potential problem. This might be more convincing than my scenario. 😄
Quoting from FalseESM:
I was able to fix my error without actually creating a separate definition file by modifying eslint-plugin-jdocs
package.json
file like this, but I suspect it is not robust so more for interest than a suggestion!I assume the robust solution would be to have an explicit definition file for cjs (say):
index.d.cts
.TypeScript is normally fairly forgiving about this problem to avoid breaking consumers (microsoft/TypeScript#50762 (comment)) and I seem to have stumbled on a case where it notices.
Happy to work on a simple reproduction if you would like to see TypeScript failure yourself rather than just the
arethetypeswrong
warning, and willing to work on a PR.Environment
eslint-plugin-jsdoc
version: 48.2.3The text was updated successfully, but these errors were encountered: