Skip to content

Commit 8016775

Browse files
committed
fix: update package and tsconfig for improved type definitions and consistency
1 parent f0f4e36 commit 8016775

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"author": "jayemscript",
3131
"license": "MIT",
3232
"devDependencies": {
33-
"@types/jest": "^29.5.12",
33+
"@types/jest": "^29.5.14",
3434
"@types/node": "^20.12.12",
3535
"jest": "^29.7.0",
3636
"ts-jest": "^29.1.4",

tsconfig.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
"target": "ES2020",
44
"module": "CommonJS",
55
"lib": ["ES2020"],
6-
"types": ["node"],
6+
"types": ["node", "jest"],
77
"declaration": true,
88
"declarationMap": true,
99
"sourceMap": true,
1010
"outDir": "./dist",
11-
"rootDir": "./src",
11+
"rootDir": ".",
1212
"strict": true,
1313
"esModuleInterop": true,
1414
"skipLibCheck": true,
1515
"forceConsistentCasingInFileNames": true
1616
},
17-
"include": ["src/**/*"],
18-
"exclude": ["node_modules", "dist", "test"]
17+
"include": ["src/**/*", "test/**/*"],
18+
"exclude": ["node_modules", "dist"]
1919
}

0 commit comments

Comments
 (0)