From f64aae10c5dad79ef4bd574195e2ba44bb98c491 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Fri, 3 Apr 2026 11:48:14 -0700 Subject: [PATCH] /tools: add tsconfig for node types --- tools/tsconfig.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tools/tsconfig.json diff --git a/tools/tsconfig.json b/tools/tsconfig.json new file mode 100644 index 000000000..d270e2be4 --- /dev/null +++ b/tools/tsconfig.json @@ -0,0 +1,10 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "types": ["node"] + }, + "include": [ + "**/*.ts" + ], + "exclude": [] +}