change(web/utils): generate .d.ts file

This commit is contained in:
Eddie Antonio Santos 2020-05-20 10:27:57 -06:00
parent d0103fcaab
commit 4e75d21182
No known key found for this signature in database
GPG key ID: DD411EA4D9509D87
2 changed files with 3 additions and 1 deletions

View file

@ -2,7 +2,8 @@
"name": "@keymanapp/web-utils",
"version": "14.0.78",
"description": "Common utility functions used throughout other Keyman packages",
"main": "index.js",
"main": "./dist/index.js",
"types:": "./dist/index.d.ts",
"scripts": {
"tsc": "tsc"
},

View file

@ -5,6 +5,7 @@
"outDir": "../dist/",
"inlineSources": true,
"sourceMap": true,
"declaration": true,
"target": "es5",
"types": ["node"],
"lib": ["es6"],