Open
Description
The docs currently seem to recommend adding .d.ts
files:
- https://jest-extended.jestcommunity.dev/docs/getting-started/typescript
- https://jest-extended.jestcommunity.dev/docs/getting-started/setup#vitest-typescript-types-setup
I had success by just adding to compilerOptions.types
in tsconfig.json
. Maybe that's all that is needed?
"compilerOptions": {
"types": [
"jest-extended",
],
},
In case vitest globals are in use, one can add vitest/globals
to that array.
Metadata
Metadata
Assignees
Labels
No labels