From 45e0d7b4419aca7345a8ab2da043d23db3917522 Mon Sep 17 00:00:00 2001 From: AsifNawaz-cnic Date: Tue, 24 Mar 2026 12:10:55 +0000 Subject: [PATCH] chore(tsconfig): add "types" option to compilerOptions for improved type definitions --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index d908ea92..867689b4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,8 @@ { "extends": "./.github/linters/tsconfig.json", "compilerOptions": { - "outDir": "./dist" + "outDir": "./dist", + "types": ["node"] }, "exclude": ["node_modules", "./dist/**/*", "./tests/**/*"] }