mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-29 17:07:08 +02:00
refactor: make each tsconfig explicitly declare module and include/exclude (#7443)
This commit is contained in:
parent
a0b0477dee
commit
a555fd1dcb
45 changed files with 223 additions and 47 deletions
|
@ -62,7 +62,9 @@ describe('packages', () => {
|
|||
const packageJsonFiles = await getPackagesJsonFiles();
|
||||
|
||||
packageJsonFiles
|
||||
.filter((packageJsonFile) => packageJsonFile.content.name.startsWith('@'))
|
||||
.filter((packageJsonFile) =>
|
||||
packageJsonFile.content.name?.startsWith('@'),
|
||||
)
|
||||
.forEach((packageJsonFile) => {
|
||||
if (packageJsonFile) {
|
||||
// Unfortunately jest custom message do not exist in loops,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue