From 7c7427761bcfa14ea0202575e7e2f362e306500e Mon Sep 17 00:00:00 2001 From: regexowl Date: Fri, 9 May 2025 09:29:06 +0200 Subject: [PATCH] tsconfig: Specify `include` Specify, what folders to include in the compilation process. This limits the scope, might reduce compilation time and will resolve errors outputted to the console during build. --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index a285dfdf..02337fa9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -24,5 +24,6 @@ "./src/test/mocks/*" ] } - } + }, + "include": ["./src", "./playwright"] }