From 395bad135bd95d50b7e22ef3824d7b7c3193a52f Mon Sep 17 00:00:00 2001 From: AB1908 <14124383+AB1908@users.noreply.github.com> Date: Sat, 17 Sep 2022 15:43:56 +0530 Subject: [PATCH] feat: set config for jest - Allows using JSON as objects - Allows jest to resolve node_modules --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 1383e2f..732e408 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,6 +10,8 @@ "moduleResolution": "node", "importHelpers": true, "isolatedModules": true, + "esModuleInterop": true, + "resolveJsonModule": true, "lib": [ "DOM", "ES5",