From 42c66d13436eea106974de4e94fed9e1bc8548e4 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Fri, 24 Jul 2020 21:48:19 +0200 Subject: [PATCH] Exclude old backend code from tsc compilation Signed-off-by: David Mehren --- tsconfig.build.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.build.json b/tsconfig.build.json index 64f86c6bd..db2ac7464 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,4 +1,4 @@ { "extends": "./tsconfig.json", - "exclude": ["node_modules", "test", "dist", "**/*spec.ts"] + "exclude": ["node_modules", "test", "dist", "**/*spec.ts" , "old_src"] }