mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-27 10:07:40 +00:00
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:
parent
9423ee504f
commit
79fdadc87f
1 changed files with 2 additions and 2 deletions
|
|
@ -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": {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue