From bd9dba7d26a9185cdadc76fec1b7ce2600ecfbd6 Mon Sep 17 00:00:00 2001 From: Jacob Smith <3012099+JakobJingleheimer@users.noreply.github.com> Date: Sun, 8 Dec 2024 00:08:30 +0100 Subject: [PATCH] fixup!: exclude `*.test.*` from type-check --- tsconfig.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 8913f37..2a227e5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -59,5 +59,9 @@ "**/*.spec.mts", "**/*.spec.js", "**/*.spec.ts", + "**/*.test.mjs", + "**/*.test.mts", + "**/*.test.js", + "**/*.test.ts", ], }