From cad8ac3e52b72fec062baef2190abaa22bc077cb Mon Sep 17 00:00:00 2001 From: Daniel Bankhead Date: Tue, 22 Oct 2024 10:49:04 -0700 Subject: [PATCH] fix: Allow `typescript` v5+ as a peer dependency 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" } }