2026-04-18 14:04:45 +09:00
|
|
|
const EXCLUDED_DIR_NAMES = [
|
|
|
|
|
"node_modules",
|
|
|
|
|
".git",
|
|
|
|
|
"dist",
|
|
|
|
|
"build",
|
|
|
|
|
".next",
|
2026-05-16 17:41:49 +09:00
|
|
|
".omo",
|
2026-04-18 14:04:45 +09:00
|
|
|
".sisyphus",
|
|
|
|
|
".omx",
|
|
|
|
|
".turbo",
|
|
|
|
|
"coverage",
|
|
|
|
|
"out",
|
|
|
|
|
".cache",
|
|
|
|
|
".vscode-test",
|
|
|
|
|
"target",
|
|
|
|
|
".local-ignore",
|
|
|
|
|
] as const
|
|
|
|
|
|
|
|
|
|
export const EXCLUDED_DIRS: ReadonlySet<string> = Object.freeze(new Set<string>(EXCLUDED_DIR_NAMES))
|