I have a project using typescript (It's discord bot but shouldn't be relevant) and when I try to compile the TSC commands never seems to finish. I tried understanding why I wasn't working so after a bit I found a file in my project that is causing the issue and the only way I found to get the TSC command to ever finish is by adding an as any or any other type that would cause an error where I use a param typed as the keyof of an interface and used to access a value from an object using the [<variable>] syntax (I have the noImplicitAny option enabled and when an invalid key is used for accessing proprieties with [<prop>] it gives the return type any), but if I don't any any as or any kind of casing then the compiler get stuck during compilation and I don't get any kind of warning/error
also, visual studio code can't load the intellisense caused by the TS-Server also getting stuck during analyzing of the code i guess