From ecf5c55661f65c0e0ab2385354f9910c97d92cb5 Mon Sep 17 00:00:00 2001 From: Daniel Rivers Date: Tue, 16 Sep 2025 20:31:32 +0100 Subject: [PATCH] chore: exclude not build ts files from build --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 5b88ded..2c146d3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,5 +19,6 @@ "noUnusedParameters": true, "noFallthroughCasesInSwitch": true }, - "include": ["lib"] + "include": ["lib"], + "exclude": ["lib/**/*.test.ts", "lib/**/*.spec.ts", "node_modules", "dist"] }