From 2668f231573dbb329ce329a73757086c74b9a6ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jarda=20Kot=C4=9B=C5=A1ovec?= Date: Tue, 21 May 2024 10:43:13 +0200 Subject: [PATCH] pkp/pkp-lib#9972 Explicitely define folders with javascript to improve VS code performance --- jsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jsconfig.json b/jsconfig.json index bf4d74b7cb1..d7a12c4778f 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -2,8 +2,8 @@ "compilerOptions": { "baseUrl": ".", "paths": { - "@/components/*": ["lib/ui-library/src/components/*"] + "@/*": ["lib/ui-library/src/*"] } }, - "exclude": ["node_modules"] + "include": ["lib/ui-library/src/**/*", "lib/pkp/js/**/*.js"] }