From 6430b4646321890ac25df607a196177f7db54c77 Mon Sep 17 00:00:00 2001 From: Alec Larson <1925840+aleclarson@users.noreply.github.com> Date: Tue, 12 Nov 2024 10:48:05 -0500 Subject: [PATCH] test: update exclude in test fixtures --- test/__fixtures__/configDir-syntax/tsconfig.json | 2 +- test/__fixtures__/with-baseUrl/tsconfig.json | 2 +- test/__fixtures__/without-baseUrl/tsconfig.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/__fixtures__/configDir-syntax/tsconfig.json b/test/__fixtures__/configDir-syntax/tsconfig.json index 1d6a367..2cedcc3 100644 --- a/test/__fixtures__/configDir-syntax/tsconfig.json +++ b/test/__fixtures__/configDir-syntax/tsconfig.json @@ -1,6 +1,6 @@ { "include": ["${configDir}/*.ts"], - "exclude": ["dist", "vite.config.ts"], + "exclude": ["dist"], "compilerOptions": { "module": "esnext", "moduleResolution": "bundler", diff --git a/test/__fixtures__/with-baseUrl/tsconfig.json b/test/__fixtures__/with-baseUrl/tsconfig.json index 46c8cb6..6741e20 100644 --- a/test/__fixtures__/with-baseUrl/tsconfig.json +++ b/test/__fixtures__/with-baseUrl/tsconfig.json @@ -1,5 +1,5 @@ { - "exclude": ["dist", "vite.config.ts"], + "exclude": ["dist"], "compilerOptions": { "module": "esnext", "moduleResolution": "bundler", diff --git a/test/__fixtures__/without-baseUrl/tsconfig.json b/test/__fixtures__/without-baseUrl/tsconfig.json index c844b9f..75ea0be 100644 --- a/test/__fixtures__/without-baseUrl/tsconfig.json +++ b/test/__fixtures__/without-baseUrl/tsconfig.json @@ -1,5 +1,5 @@ { - "exclude": ["dist", "vite.config.ts"], + "exclude": ["dist"], "compilerOptions": { "module": "esnext", "moduleResolution": "bundler",