Jonne Deprez

Results 4 comments of Jonne Deprez

@tywalch To pick up on your proposal: yes, I think exported types for `.page()` would help. I'm having the same issue. I now defined the pager as `any`. In any...

My current workaround for when I quickly want to generate the schema is a vitest that I mark as skipped for when I don't need it: ``` describe.skip('schema', () =>...

As a temporary solution I'm importing the package indirectly through a dummy file in the app tree: app/helpers/my-cool-npm-package.js ``` javascript import myCoolNpmPackage from 'npm:my-cool-npm-package'; export default myCoolNpmPackage; ``` tests/unit/models/product.js ```...