Currently I rely on yarn to manage my projects, with Visual Studio Code as my preferred IDE.
I am tackling two projects simultaneously, one serving as a dependency for the other. The issue arises when I update the dependent project and then try to reflect those changes in the main project. Unfortunately, the IDE does not pick up these updates unless I restart it. Is there a workaround for this problem that doesn't involve restarting the IDE?
For instance:
export class Test {
var a: string;
var b: string;
var c: string; <--- As an example, let's say I recently added and updated this property
}
In my primary project, the modified property triggers an error stating it is non-existent until I reboot the IDE. However, on rare occasions, I have managed to make it work by manually accessing the nodemodule directory.