You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of my projects has hundreds of .js files with TypeScript annotations in JSdoc but I'd prefer to have .ts files for better IDE support and readability.
Given your expertise converting JSDoc to TS, would you be interested in making a package (or extending this one) to do the reverse?
The text was updated successfully, but these errors were encountered:
TS in Node is just another case of feature creep increasing conflict potential (like type annotations being parsed as < operators, so valid TS still parses as valid JavaScript, but executing wrongly... oof).
Personally I started to use this project to finally get rid of TS again, simplyfying build pipelines along the way (browsers support ESM). I just hope this never happens to keep things simple.
Now that
.ts
syntax will run natively in Node, it can be a better fit for many projects.One of my projects has hundreds of
.js
files with TypeScript annotations in JSdoc but I'd prefer to have.ts
files for better IDE support and readability.Given your expertise converting JSDoc to TS, would you be interested in making a package (or extending this one) to do the reverse?
The text was updated successfully, but these errors were encountered: