Skip to content

Commit 7f72461

Browse files
committed
acrolinx edits
1 parent 069877e commit 7f72461

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/javascript/compile-typescript-code-nuget.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ If Visual Studio is installed, then the node.exe bundled with it will automatica
4848

4949
1. Open *tsconfig.json* and update to set the compiler options that you want.
5050

51-
The following is an example of a simple *tsconfig.json* file.
51+
Use the following example, which shows a simple *tsconfig.json* file.
5252

5353
```json
5454
{
@@ -75,14 +75,14 @@ If Visual Studio is installed, then the node.exe bundled with it will automatica
7575

7676
### Build the application
7777

78-
1. Add TypeScript (*.ts*) or TypeScript JSX (*.tsx*) files to your project, and then add TypeScript code. For a simple example of TypeScript, use the following:
78+
1. Add TypeScript (*.ts*) or TypeScript JSX (*.tsx*) files to your project, and then add TypeScript code. For a simple example of TypeScript, use the following code:
7979

8080
```typescript
8181
let message: string = 'Hello World';
8282
console.log(message);
8383
```
8484

85-
1. If you are using an older non-SDK style project, follow instructions in [Remove default imports](#remove-default-imports) before building.
85+
1. If you're using an older non-SDK style project, follow instructions in [Remove default imports](#remove-default-imports) before building.
8686

8787
1. Choose **Build > Build Solution**.
8888

@@ -157,7 +157,7 @@ Press **F5** or select the Start button at the top of the window.
157157

158158
In older ASP.NET Core projects that use the [non-SDK-style format](/nuget/resources/check-project-format), you may need to remove some project file elements.
159159

160-
If you are using the NuGet package for MSBuild support for a project, the project file must not import `Microsoft.TypeScript.Default.props` or `Microsoft.TypeScript.targets`. The files get imported by the NuGet package, so including them separately may cause unintended behavior.
160+
If you're using the NuGet package for MSBuild support for a project, the project file must not import `Microsoft.TypeScript.Default.props` or `Microsoft.TypeScript.targets`. The files get imported by the NuGet package, so including them separately may cause unintended behavior.
161161

162162
1. Right-click the project and choose **Unload Project**.
163163

@@ -167,7 +167,7 @@ If you are using the NuGet package for MSBuild support for a project, the projec
167167

168168
1. Remove references to `Microsoft.TypeScript.Default.props` and `Microsoft.TypeScript.targets`.
169169

170-
The imports to remove look similar to the following:
170+
The imports to remove look similar to the following XML:
171171

172172
```xml
173173
<Import

0 commit comments

Comments
 (0)