Emil Ivanov

Results 3 comments of Emil Ivanov

Can confirm this happened to me on a larger project. Version `3.10.0` produces the `Error: Couldn't find a Program`. Downgrading to `3.8.1` fixes this issue (for the time being).

RIP. Sad. @samuelstroschein Can you update the README to warn the repo is unmaintained?

I've stumbled upon this as well. ```typescript // en/component/index.ts totalPrice: '{value:Currency|currency}', ``` ```typescript // custom-types.ts export type Currency = { value: number; currency: string } ``` ```typescript // formatters.ts currency:...