From 05aaeddf225a64565d2caf602364aaf3c24f1b72 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 9 Jul 2026 05:49:37 +0000 Subject: [PATCH] resolver: drop dead ignoreDeprecations from tsconfig.dts.json Confirmed empirically that it now suppresses nothing under TS 7.0.2: compiling tsconfig.dts.json directly with this flag set to "6.0", "7.0", or removed entirely all produce identical (clean) output. It was a leftover suppression the previous tsdown mode never actually needed once nothing in the config triggers a deprecation warning. --- apps/resolver/tsconfig.dts.json | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/resolver/tsconfig.dts.json b/apps/resolver/tsconfig.dts.json index 845b280ac..fa6fac154 100644 --- a/apps/resolver/tsconfig.dts.json +++ b/apps/resolver/tsconfig.dts.json @@ -1,7 +1,6 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "ignoreDeprecations": "6.0", "isolatedDeclarations": true, "allowJs": false }