Hi, I have an issue with Cursor. I just upgraded to the Pro version for testing, and I noticed that TypeScript no longer suggests auto-completion for known fields. For example, if I have a type/interface declared like:
type Log = {
type: string;
code: number;
message: string;
name: string;
};
When I type “log.”, nothing is suggested.
This is extremely frustrating. Also, when I manually type the fields, it no longer recognizes the type correctly. For example, in the screenshots, it shows everything as “any” even though the type was properly detected initially.