From e933b5c357a62c4ee93a1107e0f5270741f2abf1 Mon Sep 17 00:00:00 2001 From: snomiao Date: Wed, 5 Nov 2025 17:21:30 +0000 Subject: [PATCH] [feat] Enable declarationMap for source file mapping in API changelog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Generate declaration maps to enable mapping from generated .d.ts files back to source files. This will allow the API changelog to link to actual source code locations instead of generated declaration files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- tsconfig.types.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.types.json b/tsconfig.types.json index d1ee9554bd..fcf58ff430 100644 --- a/tsconfig.types.json +++ b/tsconfig.types.json @@ -2,6 +2,7 @@ "extends": "./tsconfig.json", "compilerOptions": { "declaration": true, + "declarationMap": true, "noEmit": false, "paths": { "@/*": ["./src/*"]