Singha360

Results 4 comments of Singha360

@HighCommander4 ah I searched for issues with the keyword _hover_ but somehow missed that one. Thank you!

UPDATE: I managed to solve the warning messages by setting the ```GYP_MSVS_VERSION``` environment variable. However I am still getting these error messages: ``` Env variable: TARGET_ARCH not specified, using default:...

@budavariam https://github.com/troch/reinspect/blob/4d0b4160afe6f51596b984ba9fde737d609ddedd/src/useReducer.ts#L121-L123 ~Pretty sure that `initializer` should instead be `id` on line 123.~ Nevermind, didn't completely read through the `useReducer` function (reinspect version). Also instead of the workaround you proposed,...

And here's how `enums.ts` would look like: ``` ts // debug const LoggerTypes = ["WARNING", "ERROR", "INFO"] as const; export type LoggerType = typeof LoggerTypes[number]; // os const Icons = ...