From d4c526cb7f3c2339c5459a1251b51a1c4af9aa92 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Thu, 8 Aug 2019 14:27:52 -0700 Subject: [PATCH] Enable downlevelIteration Summary: Brings us closer to what we had with Flow where we can directly iterate over maps etc. More detail here: https://mariusschulz.com/blog/downlevel-iteration-for-es3-es5-in-typescript Reviewed By: danielbuechele Differential Revision: D16647222 fbshipit-source-id: 22732c8667e13b43a0f2f9cf7ad036369575cc5b --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index bae167feb..310639730 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,6 +10,7 @@ "jsx": "react", "moduleResolution": "node", "baseUrl": ".", + "downlevelIteration": true, "paths": { "flipper": ["./src/index.js"] }