From 635eefd5e3b8e6ffe5aa2acfc15ed007906323a2 Mon Sep 17 00:00:00 2001 From: Alexander Zinn Date: Sat, 22 Nov 2025 21:40:46 -0500 Subject: [PATCH] Update tsconfig.json to include source files from 'src' directory and exclude 'dist' and 'node_modules' directories. --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index cc312a3..e3fdfb4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -21,5 +21,6 @@ "noUnusedParameters": false, "noPropertyAccessFromIndexSignature": false }, - "include": ["src/**/*.ts"] + "include": ["src"], + "exclude": ["dist", "node_modules"] }