From a983df7edd9b0c1e508c646f17d940773e2217a2 Mon Sep 17 00:00:00 2001 From: Adam Rackis Date: Mon, 23 Nov 2020 11:44:23 -0600 Subject: [PATCH] make TypeScript ignore global typings (#5704) --- 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"] } }