I need to have babel run on /node_modules/identicons/ However I still want to exclude all other packages.
/node_modules/identicons/
Reason is the identicons package
You could exclude everything from node_modules that is not identicons:
node_modules
identicons
exclude: /node_modules\/(?!identicons$)/