Files
ask262/bunfig.toml
T
bendtherules ec71200f0e test(bunfig): add pathIgnorePatterns to ignore unnecessary folders during testing
- Removed default test root setting.
- Introduced `pathIgnorePatterns` list with multiple directories (engine262, spec-built, node_modules, dist, build, coverage, .idea, docs, storage, graphology, .git) to be excluded from test runs and module resolution.
2026-04-06 13:07:17 +05:30

16 lines
269 B
TOML

[test]
# Ignore these folders during testing and module resolution
pathIgnorePatterns = [
"engine262/**",
"spec-built/**",
"node_modules/**",
"dist/**",
"build/**",
"coverage/**",
".idea/**",
"docs/**",
"storage/**",
"graphology/**",
".git/**",
]