From 4b2c29c320024a7cc1585a6a484791f4b0f0e6cc Mon Sep 17 00:00:00 2001 From: snomiao Date: Wed, 15 Oct 2025 19:40:22 +0000 Subject: [PATCH] [bugfix] Fix ESLint config conflict for vite.config.mts Removed vite.config.mts from tsconfig.json include array to resolve ESLint parsing error. The file is already configured via eslint.config.ts allowDefaultProject, and being in both locations caused a conflict. This fixes the CI lint-and-format check failure. --- tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index ba0d3de22..e98c48c4d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -58,7 +58,6 @@ "src/types/**/*.d.ts", "tailwind.config.ts", "tests-ui/**/*", - "vite.config.mts", "vitest.config.ts", // "vitest.setup.ts", ]