From 2d0506b10757b5706edef40ce24837de2e4b64a4 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Thu, 29 Feb 2024 18:31:12 -0600 Subject: [PATCH] chore: Add moduleResolution directive to tsconfig --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index c4b0912..277e054 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,7 @@ "compilerOptions": { "target": "es6", "module": "commonjs", + "moduleResolution": "Node", "outDir": "./lib", "strict": true, "noImplicitAny": false,