From 438719106c4a41f4c8d83c1413c52539ebec8fd8 Mon Sep 17 00:00:00 2001 From: Julian Early Date: Mon, 29 Apr 2024 09:46:08 -0700 Subject: [PATCH] build: update tsjson.config to to work better --- tsconfig.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index fa5d38b5..e93a70ae 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -32,7 +32,12 @@ "@public/*": [ "public/*" ] - } + }, + "types": [ + "node", + "react", + "react-dom" + ] }, "include": [ "src", @@ -43,5 +48,9 @@ // "./**/*.tsx", // "./src", // "./src/**/*.tsx" + ], + "exclude": [ + "node_modules", + "./node_modules" ] }