From 4a1e9c36c643ee76d8ba5090d5c21669b2753ff3 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Mon, 6 Sep 2021 16:35:54 +0200 Subject: [PATCH] Remove typeRoots from tsconfig As we got rid of the express types in `./types`, we can also remove the `typeRoots` setting. This also allows ts-jest to find the Jest typings when run with Yarn PnP. Signed-off-by: David Mehren --- tsconfig.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 03bcdca01..c584ce5ef 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,10 +10,6 @@ "outDir": "./dist", "baseUrl": "./", "incremental": true, - "typeRoots": [ - "./types", - "./node_modules/@types" - ], "strict": true, "strictPropertyInitialization": false }