From b6aacbc4c810e0cb0ab2f79db6fe58f1b51adb48 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 00:55:19 +0000 Subject: [PATCH] Add core configuration files --- typeflow.config.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 typeflow.config.json diff --git a/typeflow.config.json b/typeflow.config.json new file mode 100644 index 0000000..80b1bcd --- /dev/null +++ b/typeflow.config.json @@ -0,0 +1,11 @@ +{ + "includePatterns": ["**/*.ts", "**/*.tsx"], + "excludePatterns": ["node_modules", "dist", "*.d.ts"], + "maxDepth": 10, + "exportFormats": ["dot", "graphml", "json"], + "analysis": { + "circularDependencies": true, + "typeWidening": true, + "typeNarrowing": true + } +}