fix build files for packages with custom tsconfig

This commit is contained in:
Philipp Kühn
2022-01-04 23:39:38 +01:00
parent 1c601f62cd
commit 17363afde0

View File

@@ -94,7 +94,9 @@ async function build(commandLineArgs) {
'@tiptap/*': ['packages/*/src'], '@tiptap/*': ['packages/*/src'],
}, },
}, },
include: null, include: fs.existsSync(`${basePath}/tsconfig.json`)
? []
: null,
}, },
}), }),
], ],