From cfa9fa790df7ef6081e7063611a26cc137d3c270 Mon Sep 17 00:00:00 2001 From: Felix Gnass Date: Wed, 5 Jun 2024 13:52:45 +0200 Subject: [PATCH] fix: update deps Fixes the build issue mentioned in #17 --- package.json | 12 ++++++------ tsconfig.json | 1 + 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 8656e35..7228c04 100644 --- a/package.json +++ b/package.json @@ -24,13 +24,13 @@ "repository": "fgnass/typed-rpc", "license": "MIT", "devDependencies": { - "@types/express": "^4.17.11", - "@types/isomorphic-fetch": "0.0.35", - "@types/tap": "^15.0.1", - "express": "^4.17.1", + "@types/express": "^4.17.21", + "@types/isomorphic-fetch": "0.0.39", + "@types/tap": "^15.0.11", + "express": "^4.19.2", "isomorphic-fetch": "^3.0.0", - "tap": "^15.0.9", - "typescript": "^4.2.4", + "tap": "^19.0.2", + "typescript": "^5.4.5", "with-server": "^2.1.0" } } diff --git a/tsconfig.json b/tsconfig.json index 037d6b3..04c3929 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,6 +7,7 @@ "outDir": "lib", "sourceMap": true, "strict": true, + "skipLibCheck": true, "target": "ES2020" }, "include": ["src"]