From fbfda031381d4a34796bd5f89d94f696d783155f Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Fri, 1 Oct 2021 13:32:09 +0200 Subject: [PATCH] don't let tsc check build system specific files --- tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 0179e267..e09e7cc5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,5 +4,8 @@ "noEmit": true, "target": "ES2020" }, + "exclude": [ + "src/sdk/paths/*" + ], "include": ["src/**/*"], }