JSDoc in TS and JS

jsdoc-in-ts-and-js

Two days ago, I wrote a post about JSDoc.
The post was about using JSDoc for type checking, and it received over 60 comments, including my own replies.

Some of the comments were critical of JSDoc’s type checking capabilities, while others defended JSDoc’s ability to provide complete type checking.
I was curious about the repetition of the same question and answer, and I realized that we were talking about different JSDoc.

TS JSDoc

In TypeScript, JSDoc is a pure comment.
Although it provides some information when we hover over the code, it does not support type checking at all.
But it’s different in JavaScript.

JS JSDoc

By adding a few settings to tsconfig.json, TypeScript can read JSDoc in JavaScript and support the same level of type checking as TypeScript.
This is in stark contrast to the incompetent JSDoc of TypeScript.
Also, even in cases where JSDoc is written but not used with TypeScript, such as in an eslint project, JSDoc is simply a comment.
I agree to some extent that JSDoc can be aesthetically horrible, and it is hard to argue against that.
However, I hope that the misunderstanding that JSDoc does not support adequate type checking will be cleared up, and I will leave an example below of how TypeScript and JSDoc can be used to perform the same type checking.

Thank you.

TypeScript DeepReadonly
JSDoc DeepReadonly

Total
0
Shares
Leave a Reply

Your email address will not be published. Required fields are marked *

Previous Post
what’s-in-my-bag-for-experts-live-europe

What’s in my bag for Experts Live Europe

Next Post
loop-audio-godot

Loop audio Godot

Related Posts