running this code gives me: Error: EISDIR: illegal operation on a directory, read
const handleTranslations = async () => {
const unusedTranslations = await collectUnusedTranslations(
['public/locales'],
['scripts'],
{},
);
console.log(unusedTranslations);
};
my locales is located at public/locales while i want to get all unused keys from the scripts folder. Why does not this work?

running this code gives me: Error: EISDIR: illegal operation on a directory, read
my locales is located at public/locales while i want to get all unused keys from the scripts folder. Why does not this work?
