From fba62f857823d461f21787f2fe6a4b42f961b898 Mon Sep 17 00:00:00 2001 From: StevanFreeborn Date: Fri, 3 Feb 2023 23:45:04 -0600 Subject: [PATCH] fix: added module resolution to tsconfig --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index eb434f9..0a6e46c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,7 @@ "compilerOptions": { "strictNullChecks": true, "module": "commonjs", + "moduleResolution": "node", "target": "es2015", "declaration": true, "outDir": "./dist",