Files
oh-my-opencode/src/shared/excluded-dirs.ts
T
2026-05-16 17:41:49 +09:00

20 lines
333 B
TypeScript

const EXCLUDED_DIR_NAMES = [
"node_modules",
".git",
"dist",
"build",
".next",
".omo",
".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))