From b70bc4f58e378df133127db010c0058e3194695c Mon Sep 17 00:00:00 2001 From: David Gamero Date: Thu, 16 Apr 2026 15:01:02 -0400 Subject: [PATCH] fix: add node types to tsconfig for TypeScript 6 compatibility (#251) --- 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"] }