javascript - How to get PhpStorm to recognise a function only used in a separate ts file -
i'm working on production code , there .js
file function defined in used in .ts
file. .ts
file has working /// <reference path="..."/>
.js
file, , when ctrl-click on function call in .ts
file, takes me straight function definition in .js
file.
however, in .js
file, function reported unused function ...
. i'd able both fix warning (without disabling it), , ctrl-click on function definition find of uses. when that, says no usages found in project files
.
phpstorm has linked .ts
file .js
file, how recognise .js
file linked .ts
file?
Comments
Post a Comment