Skip to content

Commit 99c00dd

Browse files
committed
Edit scripts instruction
1 parent afedbb7 commit 99c00dd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/service-bus-messaging/includes/service-bus-typescript-how-to-configure-project.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,14 @@ ms.custom: "include file"
2525
```json
2626
"type":"module",
2727
```
28-
1. Edit the `scripts` property to compile the TypeScript files. Add the `build` script.
28+
1. In the `package.json` file, edit the `scripts` property to compile the TypeScript files. Add the `build` script.
2929

3030
```json
31-
"build": "tsc"
31+
"scripts": {
32+
"build": "tsc"
33+
}
3234
```
3335

34-
3536
1. Create a `tsconfig.json` in the project file to configure the TypeScript ESM build and copy the following into the file:
3637

3738
:::code language="json" source="~/azure-typescript-e2e-apps/quickstarts/service-bus/ts/tsconfig.json":::

0 commit comments

Comments
 (0)