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
Thanks for this project! One thing that is unfortunate is that the @noInheritDoc tags are kept in the source code and produced in the dist output (tsc with "removeComments": false) which shows up in intellisense.
Having looked through the source code, it would seem not so difficult to read from a configured list the names of class/interfaces to exclude always, and then simply check this additional list (Set<string>) by name in isNoInherit.
Another option I plan to add is to let the configured option accept either an array or a special string "builtins"
The text was updated successfully, but these errors were encountered:
Thanks for this project! One thing that is unfortunate is that the
@noInheritDoc
tags are kept in the source code and produced in the dist output (tsc with"removeComments": false
) which shows up in intellisense.Having looked through the source code, it would seem not so difficult to read from a configured list the names of class/interfaces to exclude always, and then simply check this additional list (
Set<string>
) by name inisNoInherit
.Another option I plan to add is to let the configured option accept either an array or a special string "builtins"
The text was updated successfully, but these errors were encountered: