-
-
Notifications
You must be signed in to change notification settings - Fork 156
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
Incorrect x-typescript-types
header when main entry is fetched directly
#578
Labels
deno
Not working in Deno
Comments
i believe this has been fixed in c70aa0f, will release v114 very soon |
Looks like it's not fully resolved. Just checked |
Likely related: #572 |
thanks for fixing this! |
That'd be amazing, @marvinhagemeister! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Failing module
Error message
Not an error per se, but deno is unable to find the correct typings. See discussion at denoland/deno#18583
The problem is that deno resolves the main package entry itself and fetches
https://esm.sh/[email protected]/dist/katex.mjs
directly instead ofhttps://esm.sh/[email protected]
. The latter has the correctx-typescript-types
header, but the former points to an invalid one. Given that the former is an exact match of a main entry point I was expecting the main entry point to be resolved against@types/katex
.katax
package.json:@types/katax
package.json:Additional info
*.d.ts
file not cached denoland/deno#18583The text was updated successfully, but these errors were encountered: