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/07/31 09:05:28 UTC

[incubator-annotator] 01/07: Enable the downlevelIteration TypeScript compiler option

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 8eaef7cfe15410c87c4d3306977be21ac61529af
Author: Randall Leeds <ra...@apache.org>
AuthorDate: Sun Jul 26 18:39:09 2020 -0700

    Enable the downlevelIteration TypeScript compiler option
    
    The TypeScript target is ECMAScript 2017, and Babel performs all the
    actual compilation, so this option has no effect except at the type
    level.
---
 tsconfig.json | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tsconfig.json b/tsconfig.json
index f37c6c5..acc09ae 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -2,6 +2,7 @@
   "compilerOptions": {
     "allowSyntheticDefaultImports": true,
     "baseUrl": ".",
+    "downlevelIteration": true,
     "isolatedModules": true,
     "lib": [
       "dom",