-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Setting noImplicityAny to true triggers transitive import type declaration errors with moduleResolution NodeNext #50223
Comments
Once an investigation is done, I have some follow up questions:
|
Same error with jsonpath-plus library which is an esm module and has builtin types. jsonpath-plus has types declaration at the root level. If you also set types field in exports section, it builds successfully. I think it should fallback to root types declaration. jsonpath-plus was the only package that caused this error. In my case there is a single d.ts file and i temporarily fixed by copying jsonpath.d.ts file to the project. Not working "exports": {
".": {
"import": "./dist/index-node-esm.js"
}
},
"types": "./src/jsonpath.d.ts", Working "exports": {
".": {
"import": {
"types": "./src/jsonpath.d.ts",
"default": "./dist/index-node-esm.js"
},
}
},
"types": "./src/jsonpath.d.ts", |
With 4.9 beta coming along, I was wondering if TypeScript folks had a chance to look at this one yet? Thanks! |
Here is the example of error:
Package.json for
Here are the resolution steps:
The details about the file:
Here is the
Clearly the package.json has exports field and its missing @andrewbranch @weswigham to weigh in since you have spent lot of time on module resolution modes. |
Edit: this was is not good advice. ESM and CJS entrypoints should _always_ have separate type declaration files. Any package.json `exports` structure with `types`/`import`/`require` and no nested conditions underneath them, like the diff I suggested here, is wrong.
{
"name": "prosemirror-state",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
+ "types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
Yeah, there’s probably something we could do here, especially if the subpath was
Packages that use |
@andrewbranch do you know what it is about noImplictAny that triggers this? I'm having trouble convincing the library maintainer that this is on them to fix (adding types entry under exports in addition to top-level), and I think explaining the why there would be helpful. Otherwise, it's hard to argue this isn't a TS bug, since a project that doesn't set that flag works fine with nodenext |
It would also be helpful to know if there's a way to reproduce this with prosemirror alone. Going through tiptap I think is also adding to the edge-case-y feel to this issue. |
Not being able to resolve dependency typings is only an error in |
Ah. Thanks! Super helpful. I was able to get a more minimal sample. I have updated the sample project. One thing I still don't quite understand. With the smaller example, the build fails with |
Are you referring to the dependency package.json or your own? |
Assuming you’re talking about your own—when you import the dependency as ESM, the type lookup works due to TypeScript’s extension substitution. The export map is consulted, the Contrast this to what happens in the CJS case: the export map is consulted, the In other words, |
You can also use |
Ah! Super interesting. Thanks again! I'll leave it to you all as to whether to close this. It would be great if TS could provide a tool to run a diagnostic and print out a what is wrong with a library's package.json in a simple table (list what is missing or misconfigured, consequences of said misconfiguration, and resolution steps). Then we can just point library maintainers at that. If someone can make such a tool that is standalone-ish (or just a flag on tsc), more tools could be built on top of it (github actions, a bot that can be pinged on repos to check their package.json and print the diagnostic to a comment, etc.). What you just described makes sense to me now logically @andrewbranch, but the level of detail required to understand how that all fits together appears to continue to be a lot for maintainers. With the number of possible combinations that library authors have to prepare for to be ESM-ready, a tool would be super helpful in expediting fixes. Case in point, getting to where we are right now in this issue took over 2 months. Also, I don't mean to imply that the tool would be easy to make by saying things like "simple table" and "just point library maintainers at that", but I do think a tool that presented simple output would go a long way here. Thanks again for all of you all's help! |
If it's at all possible to include more fallback behaviors that would make this scenario work, I would be appreciative. It appears I was unsuccessful at convincing this maintainer that this isn't just a bug in TypeScript ProseMirror/prosemirror#1305 (comment) Otherwise, we'll just patch the library locally using yarn's patch facilities |
@sheetalkamat I think this can be closed as external. |
Bug Report
Setting noImplicityAny to true triggers transitive import errors like this, when using
"moduleResolution": "nodenext"
:In this setup, we're importing
@tiptap/core
, which is importingprosemirror-*
packages.@tiptap/core
is a CommonJS package.prosemirror-*
packages have exports maps and appear to support CommonJS and ESM correctly. I should also note thatprosesmirror-*
packages come with their own types (i.e. no@types/*
packages needed)Setting noImplicitAny to true triggers these errors. Setting it to false makes them disappear (successful compile).
🔎 Search Terms
🕗 Version & Regression Information
With the TS 4.7 release, we're trying to migrate to NodeNext as a step to getting to ESM. It wasn't possible to use NodeNext on prior versions.
⏯ Playground Link
I can't figure out how to add node_modules to TS Playground, but I'd be happy to provide a playground link, if someone can advise there.
https://github.com/benasher44/prosemirror-nodenext
💻 Code
tsconfig.json
Add latest
@tiptap/core
to package.json (2.0.0-beta.182
in this case)TS file that imports and consumes a type from
@tiptap/core
🙁 Actual behavior
Errors that show TS can't find type declaration.
🙂 Expected behavior
Successful compile.
The text was updated successfully, but these errors were encountered: