From 11cc6c5c1282894d5fd0ea8b5e4306fd84533ad9 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Mon, 17 Jul 2023 13:34:54 -0400 Subject: [PATCH] Exclude the fixtures directory from tsconfig.json --- tests/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/tsconfig.json b/tests/tsconfig.json index 076f2a3e..584436f4 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/**/*"] }