You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@annotator.apache.org by ra...@apache.org on 2020/09/20 03:39:43 UTC

[incubator-annotator] 10/10: Simplify TypeScript library support definition

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 13b6b351660c7284a35e7e50d96ad889b96fd458
Author: Randall Leeds <ra...@apache.org>
AuthorDate: Sat Sep 19 20:33:04 2020 -0700

    Simplify TypeScript library support definition
    
    The base TypeScript configuration already defines the library support.
    Don't redefine it in the solution configuration.
---
 tsconfig.json | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/tsconfig.json b/tsconfig.json
index dac35b3..f250929 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -8,8 +8,5 @@
     { "path": "packages/apache-annotator" },
     { "path": "packages/dom" },
     { "path": "packages/selector" }
-  ],
-  "compilerOptions": {
-    "lib": ["dom", "dom.iterable", "es2018"]
-  }
+  ]
 }