From b440c38886f62bd1801b3bb2da78f1f341c2b121 Mon Sep 17 00:00:00 2001 From: Avi Vahl Date: Thu, 19 Mar 2020 03:40:44 +0200 Subject: [PATCH] chore: ignore external @types in tests - some indirect dependencies install @types packages which are not compatible with the older typescript. - adjusted test's tsconfig to not pick these up automatically, as the actual .d.ts does not depend on these external types. --- types/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/types/tsconfig.json b/types/tsconfig.json index 86328ebb1..181b36e34 100644 --- a/types/tsconfig.json +++ b/types/tsconfig.json @@ -9,8 +9,9 @@ "noEmit": true, "baseUrl": ".", + "types": [], "paths": { "handlebars": ["."] } } -} \ No newline at end of file +}