From c71f83a3dd547fc7e07c7076fb4bbb4a684f6322 Mon Sep 17 00:00:00 2001 From: Markus Tacker Date: Thu, 14 Jan 2021 14:02:02 +0100 Subject: [PATCH] fix: set moduleResolution to node --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 8cec871..c393faa 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,6 +13,7 @@ "removeComments": true, "noFallthroughCasesInSwitch": true, "forceConsistentCasingInFileNames": true, - "noImplicitAny": true + "noImplicitAny": true, + "moduleResolution": "node" } }