From c11937193d391da32c810eae63e4a6ea87edf679 Mon Sep 17 00:00:00 2001 From: xobotyi Date: Mon, 26 Jul 2021 01:23:01 +0300 Subject: [PATCH] fix: make hooks that not listed in index.ts to be built too --- tsconfig.build.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.build.json b/tsconfig.build.json index d23a4235..28ae9086 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,7 +1,8 @@ { "extends": "./tsconfig.json", "include": [ - "src/index.ts" + "src/index.ts", + "src/*/*.ts" ], "compilerOptions": { "noEmit": false,