Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export function getPackageFolderPaths(packagesFolderPath: string): string[] | undefined {
return getChildFolderPaths(packagesFolderPath, {
recursive: true,
condition: (folderPath: string) => isPackageFolderPath(folderPath, packagesToIgnore),
folderCondition: (folderPath: string) => !contains(folderNamesToIgnore, getName(folderPath))
});
}