From 566b01f36796adeb349a8cbf68f9ad26bd8018b5 Mon Sep 17 00:00:00 2001 From: BoBruce Date: Tue, 6 May 2025 16:09:06 +0800 Subject: [PATCH] fix: eslint error when use path alias (#982) --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index eef7b07..a44aff8 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -14,7 +14,8 @@ "settings": { "import/resolver": { "typescript": { - "alwaysTryTypes": true + "alwaysTryTypes": true, + "project": "./tsconfig.json" } } },