-
Notifications
You must be signed in to change notification settings - Fork 131
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
Supporting TSDoc in deno doc
and dts emit
#494
Comments
This is a blocker for me. I hope there more others like me regarding this issue, so there is incentive to tackle this. I want to be typescript friendly, but refuse to to use it directly. It is my personal preference. |
^^ Having similar issues. I have a package where I define all types via JSDoc in Thanks! |
Trying not to spam. I am interested in publishing some libraries and using jsr to improve docs and types quelity, but this is show stopper for me. I do see some progress in netflix/x-element that looks promising for this ... looking fwd to more progress. |
I have the same issue. One of the workarounds would be to generate ...
"exports": {
"./a": { "types": "./a.d.mts", "import": "./a.mjs" },
... I have tens of |
Right now we only support TS type annotations in
.ts
files for bothdeno doc
and fast check emit. We do not understand type annotations in TSDoc comments in.js
files as of yet. We could do this, but it would require significant effort:deno doc
needs to understand type expressions in TSDoc.d.ts
filesThe text was updated successfully, but these errors were encountered: