From 85547207ea2b4dfc0f26bdb67cfaf82cdd55199e Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Fri, 30 May 2025 11:59:44 -0500 Subject: [PATCH] Allow orphans in src/@types --- .dependency-cruiser.cjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.dependency-cruiser.cjs b/.dependency-cruiser.cjs index 91615e9372a..40a9785aeaf 100644 --- a/.dependency-cruiser.cjs +++ b/.dependency-cruiser.cjs @@ -42,6 +42,8 @@ module.exports = { "[.]d[.]ts$", // TypeScript declaration files "(^|/)tsconfig[.]json$", // TypeScript config "(^|/)(?:babel|webpack)[.]config[.](?:js|cjs|mjs|ts|cts|mts|json)$", // other configs + // anything in src/@types + "(^|/)src/@types/", ], }, to: {},