For example I command click on the express()
function to jump to it's definition:
const app = express();
vscode then jumps to this line inside an index.d.ts file:
declare function e(): core.Express;
Doing a Jump to Definition
/ command-click on the e()
function just puts me back in the same file. But I would like to see the actual javascript code that underlies the types wrapper without having to search for it somewhere in node_modules.
How do you do that?