From 64dc292f7521ff083c0a61017a85b0a6891a7029 Mon Sep 17 00:00:00 2001 From: Igor Date: Thu, 6 Feb 2020 13:10:05 +0200 Subject: [PATCH] bring back "resolveJsonModule": true, --- examples/cra-ts-kitchen-sink/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/cra-ts-kitchen-sink/tsconfig.json b/examples/cra-ts-kitchen-sink/tsconfig.json index 815afdf7d382..84e5f496c366 100644 --- a/examples/cra-ts-kitchen-sink/tsconfig.json +++ b/examples/cra-ts-kitchen-sink/tsconfig.json @@ -14,6 +14,7 @@ "forceConsistentCasingInFileNames": true, "module": "esnext", "moduleResolution": "node", + "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "jsx": "react"