tyrion
tyrion copied to clipboard
Unable to 'wildcard' ignorePath
Mono-repo
node_modules/
packages/
a/
node_modules/
b/
node_modules/
c/
c-1/
node_modules/
c-2/
node_modules/
Expected ignore-path
"ignorePath": [
"node_modules",
"**/node_modules"
Current ignore-path (so that it works)
"ignorePath": [
"node_modules",
"packages/a/node_modules",
"packages/b/node_modules",
"packages/c/c-1/node_modules",
"packages/c/c-2/node_modules"
Either the behaviour is not currently implemented or I'm doing it wrong. If the latter, please tell me how.
Thanks ;)
Hey @Sebdevar.
It is not currently implemented. Do you want to suggest a PR? The code is in pathHelper.ts.