This is an automated email from the ASF dual-hosted git repository. randall pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git
commit 6f6c259a984cba62526576ee9fd02670aa37fef6 Author: Randall Leeds <[email protected]> AuthorDate: Sat Apr 3 20:08:25 2021 -0700 Remove the explicit types references in package.json files TypeScript should find the index.d.ts files automatically. --- packages/dom/package.json | 1 - packages/selector/package.json | 1 - 2 files changed, 2 deletions(-) diff --git a/packages/dom/package.json b/packages/dom/package.json index 1aaf06f..2ad02d9 100644 --- a/packages/dom/package.json +++ b/packages/dom/package.json @@ -16,7 +16,6 @@ }, "main": "./lib/index.js", "module": "./lib/index.mjs", - "types": "./lib/index.d.ts", "dependencies": { "@babel/runtime-corejs3": "^7.12.5" }, diff --git a/packages/selector/package.json b/packages/selector/package.json index 4963fc2..13ccf40 100644 --- a/packages/selector/package.json +++ b/packages/selector/package.json @@ -16,7 +16,6 @@ }, "main": "./lib/index.js", "module": "./lib/index.mjs", - "types": "./lib/index.d.ts", "dependencies": { "@babel/runtime-corejs3": "^7.12.5" },
