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
In above sample, if a point the mouse over something in var a=something() don't show the JSDoc.
I think it's happens because atom-typescript points to import clause. Trying with F12, in first press goes to import clause, in second press goes to correct definition in file2.
I suggest skip import clause and go directly to definition in file2.
file1.ts
import{something}from"file2"vara=something();// << mouse hover or F12 here
file2.ts
/** something text */functionsomething(){}
The text was updated successfully, but these errors were encountered:
In above sample, if a point the mouse over
something
invar a=something()
don't show the JSDoc.I think it's happens because atom-typescript points to import clause. Trying with F12, in first press goes to import clause, in second press goes to correct definition in file2.
I suggest skip import clause and go directly to definition in file2.
The text was updated successfully, but these errors were encountered: