Skip to content

Commit

Permalink
fix: type errors in e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
jamil314 committed Dec 20, 2024
1 parent 14d66a4 commit 402b49d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
"@types/node": "^10.12.5",
"@types/node-fetch": "^2.6.2",
"@types/nodemailer": "^6.4.14",
"@types/uuid": "^10.0.0",
"app-module-path": "^2.2.0",
"chalk": "^2.4.1",
"country-data": "^0.0.31",
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@
"sourceMap": true,
"moduleResolution": "node16",
"rootDir": ".",
"lib": ["esnext.asynciterable", "es6", "es2017", "es2019", "es2022"],
"lib": ["esnext.asynciterable", "es6", "es2017", "es2019", "es2022", "dom"],
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"skipLibCheck": true,
"strictNullChecks": true,
"types": ["jest", "fhir", "geojson"]
"types": ["jest", "fhir", "geojson"],
"resolveJsonModule": true
},
"include": [
"src/**/*.ts",
Expand Down
5 changes: 5 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2322,6 +2322,11 @@
dependencies:
"@types/node" "*"

"@types/uuid@^10.0.0":
version "10.0.0"
resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-10.0.0.tgz#e9c07fe50da0f53dc24970cca94d619ff03f6f6d"
integrity sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==

"@types/wrap-ansi@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz#18b97a972f94f60a679fd5c796d96421b9abb9fd"
Expand Down

0 comments on commit 402b49d

Please sign in to comment.