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
Expected behavior: A.b should be flagged as unused, but A should not be flagged as unused, because the decorator could be doing something useful with the class. This is a common pattern in our codebase.
Actual behavior: A is flagged as unused
The text was updated successfully, but these errors were encountered:
TypeScript Version: 2.1.5 and latest 2.2.0
Code
with tsconfig.json:
Expected behavior:
A.b
should be flagged as unused, butA
should not be flagged as unused, because the decorator could be doing something useful with the class. This is a common pattern in our codebase.Actual behavior:
A
is flagged as unusedThe text was updated successfully, but these errors were encountered: