Skip to content

Commit bdf2eeb

Browse files
Fix TypeScript configuration for Jest tests
- Add 'jest' to types array in tsconfig.json - Resolves CI test failures by providing Jest type definitions
1 parent 7eacaf0 commit bdf2eeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"target": "ES2020",
44
"module": "ESNext",
55
"lib": ["ES2020", "DOM"],
6-
"types": ["node"],
6+
"types": ["node", "jest"],
77
"outDir": "./dist",
88
"rootDir": "./src",
99
"strict": true,

0 commit comments

Comments
 (0)