20 lines
333 B
TypeScript
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))
|