From 3af670cb07e987000ceee895e26d7524d80c9d43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jarda=20Kot=C4=9B=C5=A1ovec?= Date: Wed, 22 May 2024 14:14:16 +0200 Subject: [PATCH] pkp/pkp-lib#9972 Add jsconfig to guide VS Code what files to parse and how to resolve paths --- jsconfig.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000000..d35e00a918 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,14 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/*": ["lib/ui-library/src/*"] + } + }, + "include": [ + "lib/ui-library/src/**/*", + "lib/pkp/js/**/*.js", + "js/controllers/**/*.js", + "js/load.js" + ] +}