From 18eb00a70f1f48e833843be733dbfb6f4e1cadbb Mon Sep 17 00:00:00 2001 From: Germain Souquet Date: Fri, 6 Aug 2021 17:03:12 +0200 Subject: [PATCH] Change tsconfig to autodiscover all @types packages rather setting them explicitely --- tsconfig.json | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 2e0131609c..02904af9d1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,12 +12,6 @@ "outDir": "./lib", "declaration": true, "jsx": "react", - "types": [ - "node", - "react", - "flux", - "react-transition-group" - ], "lib": [ "es2019", "dom", @@ -27,5 +21,5 @@ "include": [ "./src/**/*.ts", "./src/**/*.tsx" - ], + ], }