Max Patiiuk

Results 121 comments of Max Patiiuk

Hi, I encountered the same issue. This occurs when tsconfig.json has `"target": "es2022"` or higher. Does not occur when set to `"target": "es2021"` or lower. Caused by the fact that...

These types appear incorrect too: ```ts export declare const Host: FunctionalComponent; export declare const Fragment: FunctionalComponent; ``` because FunctionalComponent is defined as returning VNode | VNode[], but TypeScript expects Fragment...

> Can you do me a favor and split https://github.com/ionic-team/stencil/issues/5306#issuecomment-1918341335 into its own issue? I'd like to make sure we're not trying to understand two different Stencil issues in the...

Ah, thank you for the clarification - I misread your comment Opened an issue, with the smallest reproducible code sample and a suggested fix - https://github.com/ionic-team/stencil/issues/5311

Thanks - this sounds good. We are not allowed to use `any` in our codebase, but there is a nice workaround: Create a `declarations.d.ts` file like this: ```ts import type...

Sure. We have several use cases that would be much easier to resolve with a TypeScript transformer (until Stencil supports all of this natively): - We have many common Props...

> ECMA-compliant decorators are not yet the way to go (sadly). Even if it were to achieve it shortly, it would take several years for the feature to be considered...

Maybe unrelated, but can we have a way to disable the progress bar or make it non-interactive? I often accidentally change my position in the book when getting my phone...

> How are you generating the audio files? I am using the macOS's native `say` command line utility (it converts text to speech using Siri's voice or any other high...

No problem. I should be able to solve this on my end by trimming the audio files. https://github.com/TortugaPower/BookPlayer/issues/1005 is a larger annoyance though (and hopefully won't require low level APIs)...