From e488a2f554bf1ddf2ecf7cae5c1cccc1c0f686bd Mon Sep 17 00:00:00 2001 From: Asaf Korem Date: Fri, 18 Oct 2024 18:08:24 +0300 Subject: [PATCH] build: avoid building test files. --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 8dcaecd..989ad80 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,5 +16,9 @@ } }, "include": ["src/**/*"], - "exclude": ["node_modules"] + "exclude": [ + "node_modules", + "**/*.test.ts", + "**/*.test.ts.snap" + ], }