From c3d3bc349d5ee9ad36ce68e1df0448e32137ace6 Mon Sep 17 00:00:00 2001 From: Gergo Nagy Date: Tue, 8 Mar 2022 18:34:52 +0100 Subject: [PATCH] remove `dev-utils` from the main tsconfig.json Otherwise ts throws a lot of errors when the dependencies of this project are not installed. But this project is not meant to be the part of the standard workspace nor CI process. --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index d3cd6c82df..729250d325 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,5 +8,6 @@ "jsx": "react-jsx", "strict": true, "noEmit": true - } + }, + "exclude": ["dev-utils"] }