From b6b7d1e66c88fc482e5d946219ac9292b01eb97c Mon Sep 17 00:00:00 2001 From: Lukas Hass Date: Thu, 3 Feb 2022 18:45:26 +0100 Subject: [PATCH] tsconfig exclude build artifacts --- front/tsconfig.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/front/tsconfig.json b/front/tsconfig.json index df902342..b9057d28 100644 --- a/front/tsconfig.json +++ b/front/tsconfig.json @@ -28,5 +28,11 @@ "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ "noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */ - } + }, + "exclude": [ + "node_modules", + "dist", + "public/iframe_api.js", + "packages/iframe-api-typings" + ] }