From e318615ea77afab71d1db13c39ff2829d02e8bd1 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Sun, 7 Sep 2025 11:00:36 -0500 Subject: [PATCH] ci(config): excluded the scripts folder in ts.config it caused issues --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 8fa3223..e700c28 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,7 +16,6 @@ }, "include": [ "app/src", - "scripts/**/*.ts", "database/testFiles/test-tiPostOrders.ts", "scripts/translateScript.js" ], @@ -25,6 +24,7 @@ "frontend", "dist", "lstDocs", - "database/testFiles" + "database/testFiles", + "scripts" ] }