From c459c3d9d41625f06795c5c4baacfb69bfe1552f Mon Sep 17 00:00:00 2001 From: microshine Date: Tue, 23 Jan 2024 01:38:57 +0100 Subject: [PATCH] chore: add moduleResolution option to tsconfig.json --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index f7e916c..2ceb165 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,7 @@ "compilerOptions": { "module": "commonjs", "target": "es2015", + "moduleResolution": "node", "sourceMap": false, "outDir": "build", "importHelpers": true,