In PyCharm, I can easily jump to the usages or the definition of a function.
For example, if it is like from app import a_function and I click on a_function by holding Cmd and then I am just inside the definition.
I believe it is not too much to ask the same feature in WebStorm with JavaScript.
For example if there is an import like import { aFunction } from '@/app', I can neither jump into the aFunction or the @/app module. Is there way to achieve this?
If I try to do this, I am welcomed by this message 'Can not find declaration to go to' which is not quite true. I need to open the global search in the project and then find the function definition and it is pretty annoying in the long run.