From ee14509228a209f41795038009c2e52e66e20ccb Mon Sep 17 00:00:00 2001 From: Peter Fajdiga Date: Wed, 17 Apr 2024 23:02:21 +0200 Subject: [PATCH] tsconfig: exclude test files --- src/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tsconfig.json b/src/tsconfig.json index 713b624..b9d20f9 100644 --- a/src/tsconfig.json +++ b/src/tsconfig.json @@ -8,5 +8,6 @@ "forceConsistentCasingInFileNames": true, "strict": true, "skipLibCheck": true - } + }, + "exclude": ["./**/*.test.ts"] }