CodeLens VSCode setting for TypeScript

Today I learned that VSCode comes with a CodeLens setting, which enables you to see references in your codebase to whatever function you’re looking at. Example here. You can click on the reference to jump to it.

You can enable it by Cmd+Shift+P > Open User Settings (JSON) > add the following setting: "typescript.referencesCodeLens.enabled": true.