From b6892d19ecc0b30a84f4cfdae443d1189ca1bfba Mon Sep 17 00:00:00 2001 From: Claas Augner Date: Tue, 7 Jun 2022 18:12:40 +0200 Subject: [PATCH] chore(tsconfig): move resolveJsonModule up --- client/tsconfig.json | 1 - tsconfig.json | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/client/tsconfig.json b/client/tsconfig.json index 145739068be8..7391fec376d2 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -5,7 +5,6 @@ "allowJs": true, "strict": true, "module": "esnext", - "resolveJsonModule": true, "isolatedModules": true, "noImplicitAny": false, "noEmit": true, diff --git a/tsconfig.json b/tsconfig.json index 761477bbdb1d..bb6cbc74f27d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,6 +5,7 @@ "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", "moduleResolution": "node", + "resolveJsonModule": true, "skipLibCheck": true, "strictBindCallApply": true, "target": "ES2018",