From 28a6aff2d3e231eaf05701396d74dc410d80a128 Mon Sep 17 00:00:00 2001 From: Mike Harder Date: Mon, 6 Jan 2025 22:30:22 +0000 Subject: [PATCH] [tsconfig.json] Replace excludes with includes --- eng/tools/eslint-plugin-tsv/tsconfig.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/eng/tools/eslint-plugin-tsv/tsconfig.json b/eng/tools/eslint-plugin-tsv/tsconfig.json index e97151ec5285..c16578a92bf1 100644 --- a/eng/tools/eslint-plugin-tsv/tsconfig.json +++ b/eng/tools/eslint-plugin-tsv/tsconfig.json @@ -3,9 +3,8 @@ "compilerOptions": { "outDir": "./dist" }, - "exclude": [ - "node_modules", - "dist", - "vitest.config.ts" + "include": [ + "src/**/*.ts", + "test/**/*.ts" ] }