1. TypeScript Wrocław #1 – 01/30/2019 Speech #1: “TypeScript myths debunked” by Krzysztof Żuraw Here Krzysiek presented us most popular myths about TypeScript that might discourage beginners from using TypeScript. (Of course I should not repeat myself by saying that you definitely should use it! 😉 ) Most interesting points were: - “TS is not needed when you have unit tests” – not true, because TS checks only typing and unit tests cover a lot more than that. - “TS is strictly related to Angular” – no, you can use TS without Angular. - “You cannot use TS with React” – we already know that you can! 😉 - “It’s hard to use external libraries with TS” – might be true, if library is strictly JavaScript-ish and has no related @types library. - “It’s hard to introduce TS to existing project” – might be true, depends on scale of project and our eagerness to convert JS to TS 😉 Speech #2: “TypeScript with React” by Piotr Pietrzak Piotr presented us his example applica...