From 61fe81b8e4ce99eefa31e8bfd0ba91a24b2571a1 Mon Sep 17 00:00:00 2001 From: Mike Harder Date: Tue, 24 Dec 2024 13:39:20 -0800 Subject: [PATCH] Exclude vitest config from compilation - Prevents confusion caused if vite finds multiple config files (JS and TS) --- eng/tools/eslint-plugin-tsv/tsconfig.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/eng/tools/eslint-plugin-tsv/tsconfig.json b/eng/tools/eslint-plugin-tsv/tsconfig.json index ec6d6640928a..e97151ec5285 100644 --- a/eng/tools/eslint-plugin-tsv/tsconfig.json +++ b/eng/tools/eslint-plugin-tsv/tsconfig.json @@ -1,6 +1,11 @@ { "extends": "../tsconfig.json", "compilerOptions": { - "outDir": "./dist", - } + "outDir": "./dist" + }, + "exclude": [ + "node_modules", + "dist", + "vitest.config.ts" + ] }