From e20f37ae85f0f4078bcc4a43e13492499fc0a6d9 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Sat, 15 Jul 2023 15:07:25 -0400 Subject: [PATCH] Like with prettier, we also need to tell tsc to ignore the fixtures directory --- tests/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/tsconfig.json b/tests/tsconfig.json index 076f2a3e..13c97cd2 100644 --- a/tests/tsconfig.json +++ b/tests/tsconfig.json @@ -7,5 +7,6 @@ // Vite's internal types aren't relevant to us "skipLibCheck": true - } + }, + "exclude": ["fixtures/"] }