When I command-click on the express()
function, it takes me to its definition:
const app = express();
In vscode, it leads me to this line in an index.d.ts file:
declare function e(): core.Express;
However, when I try to jump to the definition of e()
, it just brings me back to the same file. I want to see the actual JavaScript code that is behind the types wrapper without having to search for it in node_modules. How can I achieve that?
Is there a way to directly access the underlying JavaScript code?