From 2950175130a321a32b20b0ccf42d600247b0b564 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Alvergnat?= Date: Fri, 10 Dec 2021 10:46:43 +0100 Subject: [PATCH] chore(tsconfig): add node and jest types to tsconfig.json --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 57f8ac8c5..fde5fd881 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,11 @@ "target": "es6", "skipLibCheck": true, "sourceMap": false, - "strict": true + "strict": true, + "types": [ + "node", + "jest" + ] }, "include": ["actions", "bin", "commands", "lib"], "exclude": ["node_modules", "e2e"]