From 996aaece999033e2686300477bdae21debf62368 Mon Sep 17 00:00:00 2001 From: Daniel Bankhead Date: Tue, 22 Oct 2024 11:07:46 -0700 Subject: [PATCH] fix: Allow `typescript` v5+ as a peer dependency (#909) This isn't breaking as it is improving backwards compatibilty. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 61de20f5..f198fef6 100644 --- a/package.json +++ b/package.json @@ -84,6 +84,6 @@ "typescript": "^5.6.3" }, "peerDependencies": { - "typescript": ">=5.6.3" + "typescript": ">=5" } }