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.