From 5a55f23e9517e4e5c596f1ec6628f91b3226973c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Filip=20Tammerg=C3=A5rd?=
 <44197016+filiptammergard@users.noreply.github.com>
Date: Sat, 11 Jan 2025 20:34:35 +0100
Subject: [PATCH] Fix link in migrating cheatsheet

Resolves https://github.com/typescript-cheatsheets/react/issues/767.
---
 docs/migration/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/migration/index.md b/docs/migration/index.md
index b7b60afd..06341963 100644
--- a/docs/migration/index.md
+++ b/docs/migration/index.md
@@ -23,7 +23,7 @@ Read [TypeScript's official Guide for migrating from JS](https://www.typescriptl
   - "[Just rename all .js files to .ts](https://twitter.com/jamonholmgren/status/1089241726303199232)"?
   - use the loosest, bare minimum settings to start with
 - Level 2: Strict TypeScript
-  - use Microsoft's [`dts-gen`](https://github.com/Microsoft/dts-gen) to generate `.d.ts` files for your untyped files. [This SO answer](https://stackoverflow.com/questions/12687779/how-do-you-produce-a-d-ts-typings-definition-file-from-an-existing-javascript) has more on the topic.
+  - use Microsoft's [`dts-gen`](https://github.com/microsoft/DefinitelyTyped-tools/tree/main/packages/dts-gen) to generate `.d.ts` files for your untyped files. [This SO answer](https://stackoverflow.com/questions/12687779/how-do-you-produce-a-d-ts-typings-definition-file-from-an-existing-javascript) has more on the topic.
   - use `declare` keyword for ambient declarations - see [declaration merging](https://github.com/typescript-cheatsheets/react#troubleshooting-handbook-bugs-in-official-typings) to patch library declarations inline
 
 Misc tips/approaches successful companies have taken