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`.
This commit is contained in:
Eberhard Beilharz 2026-04-30 17:58:19 +02:00 • committed by Marc Durdin
parent 9423ee504f
commit 79fdadc87f

View file

@ -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": {