From 329c14c2e5bf14ca0e57d766f21e869c43ca504e Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Mon, 25 Mar 2024 19:39:56 +0100 Subject: [PATCH] build: use `.d.ts` for runtime generated types --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e404819610..e6b58ca0a1 100644 --- a/package.json +++ b/package.json @@ -19,11 +19,11 @@ "import": "./dist/cli/index.mjs" }, "./runtime/*": { - "types": "./dist/runtime/*.d.mts", + "types": "./dist/runtime/*.d.ts", "import": "./dist/runtime/*.mjs" }, "./dist/runtime/*": { - "types": "./dist/runtime/*.d.mts", + "types": "./dist/runtime/*.d.ts", "import": "./dist/runtime/*.mjs" }, "./package.json": "./package.json"