From 1341083f6af96ad80f0ace369a1ef9144742d2a2 Mon Sep 17 00:00:00 2001 From: SNikhill Date: Mon, 25 Jul 2022 22:38:10 +0530 Subject: [PATCH] chore(tsconfig): set typeroots --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index e10a4bc5313..e3360a0e586 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,9 @@ "strict": true, "noImplicitAny": false, "skipLibCheck": true, - "resolveJsonModule": true + "resolveJsonModule": true, + "typeRoots": ["./node_modules/@types"], + "types": ["node"] }, "include": [ "./src/**/*",