From 01ab830685faa23e6caa3c04b992e851ff5e89de Mon Sep 17 00:00:00 2001 From: Avi Vahl Date: Thu, 19 Mar 2020 03:40:44 +0200 Subject: [PATCH] fix: ensure external @types aren't picked up in test 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 +}