I am using typescript to build a microservice and handling signals as well. The code was working fine till a few days ago but recently it started throwing errors. Couldn\'t find
I also had this strange issue, but I worked around it using type assertions (in my case using a string enum):
(Object.values(someEnum) as string[]).concat(otherStringArray);