From 0c685f8522d9d32d229400b78203abaf03e064eb Mon Sep 17 00:00:00 2001 From: Chris Parsons Date: Thu, 16 Oct 2025 18:18:51 -0700 Subject: [PATCH] chore: exclude JS files and update TypeScript source paths in tsconfig.node.json --- tsconfig.node.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.node.json b/tsconfig.node.json index f23dcc4..15611b1 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -1,13 +1,14 @@ { "extends": "./tsconfig.json", "include": [ - "server.js", - "server/**/*.js", "server/**/*.ts", "database/**/*.ts", "app/contexts/**/*.ts", "vite.config.ts" ], + "exclude": [ + "**/*.js" + ], "compilerOptions": { "composite": true, "strict": true,