From 79fdadc87fdc6cfee7199ae0c8bdac2e5a29a806 Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Thu, 30 Apr 2026 17:58:19 +0200 Subject: [PATCH] chore(web): use .d.ts instead of .d.js for types The convention is to use the `.d.ts` extension for typescript types, and that's what is used elsewhere in the `package.json` file. This change fixes the two instances that had `.d.js`. --- web/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/package.json b/web/package.json index 47ebacab73..0ce1a7d993 100644 --- a/web/package.json +++ b/web/package.json @@ -4,12 +4,12 @@ "exports": { "./app/browser": { "es6-bundling": "./src/app/browser/src/index.ts", - "types": "./build/app/browser/obj/index.d.js", + "types": "./build/app/browser/obj/index.d.ts", "import": "./build/app/browser/obj/index.js" }, "./common/web-utils": { "es6-bundling": "./src/common/web-utils/src/index.ts", - "types": "./build/common/web-utils/obj/index.d.js", + "types": "./build/common/web-utils/obj/index.d.ts", "import": "./build/common/web-utils/obj/index.js" }, "./engine/attachment": {