typescript-go
typescript-go copied to clipboard
JSDoc types don't parse, even outside JSDoc
See tests/cases/conformance/jsdoc/jsdocDisallowedInTypescript.ts
Excuse my ignorance, but why JSDoc? Microsoft has also made @microsoft/tsdoc; wouldn't it be useful to support that directly instead?
JSDoc is a syntax, TSDoc is a subset of it (which also explicitly ignores types in favor of TS type annotations, which will not work in JS files, where JSDoc types are the only choice).
This is fixed now.