From d7cabdb894f61829ea932027477e4a9d6908a49b Mon Sep 17 00:00:00 2001 From: Sped0n Date: Sun, 29 Oct 2023 12:30:25 +0800 Subject: [PATCH] chore(tsconfig.json): add "moduleResolution" property with value "node" to improve module resolution in the project configuration --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index a7acaa3..3288c16 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,8 +8,9 @@ "strict": true, "esModuleInterop": true, "skipLibCheck": true, - "forceConsistentCasingInFileNames": true + "forceConsistentCasingInFileNames": true, + "moduleResolution": "node" }, "$schema": "https://json.schemastore.org/tsconfig", "display": "Recommended" -} \ No newline at end of file +}