Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit 4ea67b5

Browse files
Merge pull request #128 from sajadtorkamani/doc-fix/typo
Fix typo in README.md
2 parents 25ef6a0 + c8a2c2d commit 4ea67b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ Below is a list of all the scripts this template has available:
276276
TypeScript uses `.d.ts` files to provide types for JavaScript libraries that were not written in TypeScript.
277277
This is great because once you have a `.d.ts` file, TypeScript can type check that library and provide you better help in your editor.
278278
The TypeScript community actively shares all of the most up-to-date `.d.ts` files for popular libraries on a GitHub repository called [DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types).
279-
Making sure that your `.d.ts` files are setup correctly is super important because once they're in place, you get an incredible amount high quality of type checking (and thus bug catching, IntelliSense, and other editor tools) for free.
279+
Making sure that your `.d.ts` files are setup correctly is super important because once they're in place, you get an incredible amount of high quality type checking (and thus bug catching, IntelliSense, and other editor tools) for free.
280280

281281
> **Note!** Because we're using `"noImplicitAny": true`, we are required to have a `.d.ts` file for **every** library we use. While you could set `noImplicitAny` to `false` to silence errors about missing `.d.ts` files, it is a best practice to have a `.d.ts` file for every library. (Even if the `.d.ts` file is [basically empty!](#writing-a-dts-file))
282282

0 commit comments

Comments
 (0)