From 28725caaa8618352e39ecb379f92151f69a37d21 Mon Sep 17 00:00:00 2001 From: Marko Djordjevic Date: Tue, 17 Feb 2026 23:29:52 +0100 Subject: [PATCH] fix: exclude scripts/ from TypeScript build to fix deployment --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 877b650..250d9dc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -36,6 +36,7 @@ ".next/dev/types/**/*.ts" ], "exclude": [ - "node_modules" + "node_modules", + "scripts" ] }