From be7fb7d13a70c09e1decd1c83f457df8799bda9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Sun, 20 Jun 2021 14:06:41 +0200 Subject: [PATCH] build: fix issue where frontend was included in backend tsc build --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index d74f4f0..cce4f57 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,5 +13,6 @@ "paths": {}, "lib": ["ES2020"] }, - "exclude": ["node_modules", "dist"] + "exclude": ["node_modules", "dist"], + "include": ["src", "test"] }