While working with TestCafe, I am implementing tests using the Page Objects pattern.
I have already written some page objects in advance, even before their actual usage, as I am familiar with the page and know what to anticipate.
However, when attempting to execute tests with these unused page objects, I encounter an error message that states:
Error: TypeScript compilation failed.
C:/path-to/a.page-object.ts (40, 7): 'PageObjectExample' is declared but never used.
Could there be a TestCafe or TypeScript setting that would temporary enable the compilation of such tests?