Skip to content

Commit 4ef32d5

Browse files
authored
Merge pull request #3583 from guymelef/patch-3
edit formatting
2 parents a2a1989 + 0723237 commit 4ef32d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/9/en/part9b.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -304,9 +304,9 @@ Usually, types for existing packages can be found from the *@types* organization
304304
npm install --save-dev @types/react @types/express @types/lodash @types/jest @types/mongoose
305305
```
306306

307-
and so on and so on. The *@types/** are maintained by [Definitely typed](https://github.com/DefinitelyTyped/DefinitelyTyped), a community project to maintain types of everything in one place.
307+
and so on and so on. The *@types/* are maintained by [Definitely typed](https://github.com/DefinitelyTyped/DefinitelyTyped), a community project to maintain types of everything in one place.
308308

309-
Sometimes, an npm package can also include its types within the code and, in that case, installing the corresponding *@types/** is not necessary.
309+
Sometimes, an npm package can also include its types within the code and, in that case, installing the corresponding *@types/* is not necessary.
310310

311311
> **NB:** Since the typings are only used before compilation, the typings are not needed in the production build and they should *always* be in the devDependencies of the package.json.
312312
@@ -318,7 +318,7 @@ Since version 10.0 *ts-node* has defined *@types/node* as a [peer dependency](ht
318318
npm install --save-dev @types/node
319319
```
320320

321-
When the package @types/node is installed, the compiler does not complain about the variable *process*. Note that there is no need to require the types to the code, the installation of the package is enough!
321+
When the package *@types/node* is installed, the compiler does not complain about the variable *process*. Note that there is no need to require the types to the code, the installation of the package is enough!
322322

323323
### Improving the project
324324

0 commit comments

Comments
 (0)