From 46d19741440912fd690c7e551e92f404f920609a Mon Sep 17 00:00:00 2001 From: David Gamero Date: Wed, 15 Apr 2026 17:01:10 -0400 Subject: [PATCH] fix: add node types to tsconfig for TypeScript 6 compatibility --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 35888d6..e7c84e7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,8 +5,10 @@ "moduleResolution": "NodeNext", "rootDir": "./src", "outDir": "./lib", + "types": ["node"], "skipLibCheck": true, "noEmit": true }, + "include": ["src"], "exclude": ["node_modules", "**/*.test.ts", "vitest.config.ts"] }