diff --git a/packages/documentation/copy/en/release-notes/TypeScript 5.5.md b/packages/documentation/copy/en/release-notes/TypeScript 5.5.md index 6606b1bf867f..22342e225d29 100644 --- a/packages/documentation/copy/en/release-notes/TypeScript 5.5.md +++ b/packages/documentation/copy/en/release-notes/TypeScript 5.5.md @@ -206,7 +206,7 @@ function doSomething(myValue) { ``` `SomeType` won't exist at runtime, so the import will fail. -Developers can instead use a namespace import instead. +Developers can instead use a namespace import. ```js import * as someModule from "./some-module"; @@ -1054,3 +1054,4 @@ export declare const myPath: path.ParsedPath; Adding `preserve="true"` is backwards compatible with older versions of TypeScript as unknown attributes are ignored. This change also improved performance; in our benchmarks, the emit stage saw a 1-4% improvement in projects with declaration emit enabled. +