summary refs log tree commit diff homepage
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json15
1 files changed, 4 insertions, 11 deletions
diff --git a/tsconfig.json b/tsconfig.json
index d530d8a..9070fb4 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,10 +1,7 @@
 {
   "compilerOptions": {
     "target": "es5",
-    "lib": [
-      "es2018",
-      "esnext"
-    ],
+    "lib": ["es2018", "esnext"],
     "allowJs": true,
     "esModuleInterop": true,
     "noImplicitAny": true,
@@ -13,14 +10,10 @@
     "strict": false,
     "strictNullChecks": true,
     "strictFunctionTypes": true,
+    "downlevelIteration": true,
     "outDir": "build/",
     "moduleResolution": "node"
   },
-  "include": [
-    "./src/**/*",
-    "./typings/**/*"
-  ],
-  "exclude": [
-    "node_modules"
-  ]
+  "include": ["./src/**/*", "./typings/**/*"],
+  "exclude": ["node_modules"]
 }