You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ This guide is about **_"How to write type declarations to only the minimum neces
12
12
-#### (Update for TypeScript v2.4 + v2.5 - fat PR on the way, lot of changes, almost there!)
13
13
14
14
### Introduction
15
-
This guide is aimed to use `strict` configuration of TypeScript compiler to provide the best static-typing experience with strict null checking. We want to spent a minimal amount of effort to write explicit type annotations and most of the time to leverage smart [Type Inference](https://www.typescriptlang.org/docs/handbook/type-inference.html).
15
+
This guide is aimed to use [`--strict`](https://www.typescriptlang.org/docs/handbook/compiler-options.html) flag of TypeScript compiler to provide the best static-typing experience. Additionally we want to spent a minimal amount of effort to write explicit type annotations to our JavaScript code and whenever possible leverage smart [Type Inference](https://www.typescriptlang.org/docs/handbook/type-inference.html).
16
16
17
17
Benefits of this setup and static-typing in general:
18
18
- refactoring capabilities with the power equal to strongly typed languages (not "stringly" typed like Webstorm IDE)
0 commit comments