ignore
Built-in ignore glob patterns for file scanning and watching.
This module owns the pattern catalog and option toggles only. Each group is
compiled into PathMatchPredicate instances via toPathMatcher;
composition (and/or/negate) lives in ./match.
Consumers:
- ignorePatterns - yields the enabled glob strings (for projen
prettier/gitignore). Pass
{ test: false }there: thetestgroup is for filesystem scanning only (skip test dirs when discovering packages / watching), not for VCS or formatter ignore files. - ignorePathMatcher - returns a single PathMatcher for
findFiles and watchFiles (keeps
test: trueby default).