From d8e63954d8a15881c4ed5156f5d0d973095be959 Mon Sep 17 00:00:00 2001 From: LB Johnston Date: Sat, 6 Apr 2024 15:24:36 +1000 Subject: [PATCH] Update tsconfig to allow json imports --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 0a545b05ec..e27a60c91d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,6 +10,7 @@ "noImplicitAny": false, // TODO: Enable once all existing code is typed "noUnusedLocals": true, "noUnusedParameters": true, + "resolveJsonModule": true, "skipLibCheck": true, "strictNullChecks": true, "strictPropertyInitialization": true,