From d1106c62514a136426a2b0141860e56a8e392a02 Mon Sep 17 00:00:00 2001 From: vapormusic Date: Wed, 2 Feb 2022 14:32:11 +0700 Subject: [PATCH] fix tsc not building plugins files --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index ce990f01..9b66fccc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,6 +18,8 @@ ] }, "include": [ - "src/main/*" + "src/main/*", + "src/main/plugins/*", + "src/main/plugins/Extras/*" ] }