typescript 2.7.0 added a new strictness flag named --strictPropertyInitialization.
strictPropertyInitialization will be turned on along with --strict mode flags.
the pr fixed some ts error due to strictPropertyInitialization.
// src/image-zoom/image-zoom.component.tsx(46,11): error TS2564: Property 'imagePanResponder' has no initializer and is not definitely assigned in the constructor.
// src/image-zoom/image-zoom.component.tsx(53,11): error TS2564: Property 'lastTouchStartTime' has no initializer and is not definitely assigned in the constructor.
typescript 2.7.0 added a new strictness flag named
--strictPropertyInitialization
.strictPropertyInitialization
will be turned on along with --strict mode flags. the pr fixed some ts error due tostrictPropertyInitialization
.