Fix project detection in root Jest config

Prior to this, empty directories in `packages` would have hindered Jest
from transforming some files, resulting in "unexpected token" errors
This commit is contained in:
bjoluc 2021-10-08 13:27:47 +02:00
parent c671ad717a
commit 6aad6315df

View File

@ -41,7 +41,7 @@
},
"jest": {
"projects": [
"<rootDir>/packages/*"
"<rootDir>/packages/*/jest.config.cjs"
]
}
}