From 97be8ab9e8d900ed8a850c6e2391e9b74a50c000 Mon Sep 17 00:00:00 2001 From: Adam Rackis Date: Sat, 21 Nov 2020 08:52:39 -0600 Subject: [PATCH] Force TS to ignore global typings. Fixes: https://github.com/sveltejs/svelte/issues/5692 --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 39476f3dd1..248e3b5e98 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -25,6 +25,7 @@ //"strict": true, "noImplicitThis": true, "noUnusedLocals": true, - "noUnusedParameters": true + "noUnusedParameters": true, + "typeRoots": ["./node_modules/@types"] } }