From 4f61cddfbadc95f50d9650bd4f244f776b5d3ebb Mon Sep 17 00:00:00 2001 From: vapormusic Date: Wed, 2 Feb 2022 14:28:51 +0700 Subject: [PATCH] fix tsc not finding the plugins folder (idk why) --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index ce990f01..748678f0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,6 +18,7 @@ ] }, "include": [ - "src/main/*" + "src/main/*", + "src/main/plugins/*" ] }