variable BLAST_RADIUS_PATTERNS

Basename regexes with the same blast-radius semantics. Currently catches tsconfig.json and editor variants like tsconfig.test.json / tsconfig.build.json.

BLAST_RADIUS_PATTERNS.some((re) => re.test('tsconfig.build.json')); // true
BLAST_RADIUS_PATTERNS.some((re) => re.test('deno.jsonc')); // false — only tsconfig variants

Type

RegExp[]

Usage

import { BLAST_RADIUS_PATTERNS } from "lib/utils/get-changed-file-paths-in-git-since.ts";