The JSDoc @deprecated tag documents code that should no longer be used.
TypeScript already visually indicates deprecated code with strikethrough styling, but does not produce errors for using it.
Using deprecated code often leads to maintenance issues when that code is eventually removed.
This rule reports references to code marked with @deprecated.
If portions of your project heavily use deprecated APIs and have no plan for migrating to non-deprecated alternatives, you may disable this rule in those portions.
Some legacy code may need to continue using deprecated APIs until a migration can be planned.