From f5d8e98a909b26f1173de70ee353a8461ce5b740 Mon Sep 17 00:00:00 2001 From: EduardF1 <50618110+EduardF1@users.noreply.github.com> Date: Fri, 26 Jun 2026 16:01:52 +0200 Subject: [PATCH] docs: fix broken marketplace link and two markup errors - Nightly Builds.md: the VS Marketplace link was double-encoded (itemName%253D... decodes to itemName%3D..., not itemName=...), which returns HTTP 404. Replaced %253D with =, which resolves 200. - handbook-v2/Basics.md: removed a stray closing in the preamble front-matter HTML that had no matching opening tag. - declaration-files/Publishing.md: closed an unmatched double-quote inside an inline code span ("./index.v3.d.ts -> "./index.v3.d.ts"). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- packages/documentation/copy/en/Nightly Builds.md | 2 +- packages/documentation/copy/en/declaration-files/Publishing.md | 2 +- packages/documentation/copy/en/handbook-v2/Basics.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/documentation/copy/en/Nightly Builds.md b/packages/documentation/copy/en/Nightly Builds.md index 6643d94de27b..8f86a12f6913 100644 --- a/packages/documentation/copy/en/Nightly Builds.md +++ b/packages/documentation/copy/en/Nightly Builds.md @@ -31,7 +31,7 @@ A direct way to do this is to open or create your workspace's `.vscode/settings. "typescript.tsdk": "/node_modules/typescript/lib" ``` -Alternatively, if you simply want to run the nightly editing experience for JavaScript and TypeScript in Visual Studio Code without changing your workspace version, you can run the [JavaScript and TypeScript Nightly Extension](https://marketplace.visualstudio.com/items?itemName%253Dms-vscode.vscode-typescript-next) +Alternatively, if you simply want to run the nightly editing experience for JavaScript and TypeScript in Visual Studio Code without changing your workspace version, you can run the [JavaScript and TypeScript Nightly Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-typescript-next) ### Sublime Text diff --git a/packages/documentation/copy/en/declaration-files/Publishing.md b/packages/documentation/copy/en/declaration-files/Publishing.md index ce0cd931ad65..1d3260af3663 100644 --- a/packages/documentation/copy/en/declaration-files/Publishing.md +++ b/packages/documentation/copy/en/declaration-files/Publishing.md @@ -136,7 +136,7 @@ When you want to only change the resolution for a single file at a time, you can } ``` -On TypeScript 4.0 and above, an import for `"package-name"` would resolve to `./index.d.ts` and for 3.9 and below `"./index.v3.d.ts`. +On TypeScript 4.0 and above, an import for `"package-name"` would resolve to `./index.d.ts` and for 3.9 and below `"./index.v3.d.ts"`. Note that redirections only affect the _external_ API of a package; import resolution within a project is not affected by `typesVersions`. For example, a `d.ts` file in the previous example containing `import * as foo from "./index"` will still map to `index.d.ts`, not `index.v3.d.ts`, whereas another package importing `import * as foo from "package-name"` _will_ get `index.v3.d.ts`. diff --git a/packages/documentation/copy/en/handbook-v2/Basics.md b/packages/documentation/copy/en/handbook-v2/Basics.md index 79b870e76501..39da5dfcd950 100644 --- a/packages/documentation/copy/en/handbook-v2/Basics.md +++ b/packages/documentation/copy/en/handbook-v2/Basics.md @@ -4,7 +4,7 @@ layout: docs permalink: /docs/handbook/2/basic-types.html oneline: "Step one in learning TypeScript: The basic types." preamble: > -

Welcome to the first page of the handbook. If this is your first experience with TypeScript - you may want to start at one of the 'Getting Started' guides +

Welcome to the first page of the handbook. If this is your first experience with TypeScript - you may want to start at one of the 'Getting Started' guides --- Each and every value in JavaScript has a set of behaviors you can observe from running different operations.