From f9614b3bcde85b55f2ad03f35da38599fe0759da Mon Sep 17 00:00:00 2001 From: Jon Eugster Date: Tue, 25 Apr 2023 21:27:08 +0200 Subject: [PATCH] ignore server/ when building webpack --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index c09f51d..5fe8ea1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,5 +11,6 @@ "downlevelIteration": true, "experimentalDecorators": true, "allowSyntheticDefaultImports": true, - } + }, + "exclude": ["server"] }