`import()` type annotations are forbidden – Javascript
I am using XState on the backend and per the XState docs, I added type annotation to my state machine's config: export const machine = createMachine( { tsTypes: {} as import("./testMachine.server.typegen").Typegen0, ..., } However, the type cast is throwing this…