Closed
Description
Type: Bug
Steps to reproduce:
const STRINGS = {
title: 'A Title',
} satisfies Record<string,string>;
//somewhere in app
STRINGS.title
CMD-click on STRINGS.title works
; it takes me to the declaration.
However, CMD click on title declared in the STRINGS object doesn't take me to the references.
Right click + Go to references works. Removing the satisfies fixes the issue.