Pranav Bawgikarpranavbawg.hashnode.dev·Apr 20, 2024Well, I kinda learned what TypeScript is...Preface This article was like that missing sock you find a year later behind the dryer — unexpected but still useful! 'Understanding TypeScript' by Gavin Beirman and his co-authors had finally surfaced and helped me get a good grasp of the language's...1 like·32 readsTypeScript
Osaf Ali Sayedosafalisayed.com·Feb 1, 2024Day 1 - Type Basics and Better workflow with tsconfigWhen working with TypeScript we would want to define the type of each variable. This can be done explicitly or implicitly. To explicitly define a variable type we can write the following code // We can clearly see we define type after the colon let n...1 like·36 readsLearn with me TypeScript Crash Course SeriesTypeScript
Soniya KaramchandaniforCodeParrot 10x Dev10xdev.codeparrot.ai·Jan 11, 2024Transpilers or WTH does Babel doWHAT IS TRANSPILER? A transpiler is a specialized tool that transforms source code from one programming language to another, facilitating interoperability and migration. Unlike traditional compilers that produce machine code, transpilers generate equ...44 readsbrowser
Gaurav J Somanigaurav750.hashnode.dev·Oct 11, 2023Typescript's Heartbeat: A guide to TSC CompilerTypescript, as we all know, enhances the development process with its static typing and advanced features. But what happens behind the scenes when you write typescript code? How does it magically transform into browser-friendly Javascript? So, in thi...2 likes·81 readsTypeScript
Anmol Kansalanmol-kansal.hashnode.dev·Jan 22, 2023When to use Type Only Imports Exports in TypeScript?Since the introduction of type-only imports in TypeScript 3.8, a lot of developers including me have been confused about the usage of type-only imports. If we read the official docs, it says - import type only imports declarations to be used for typ...6 likes·71 readsTypeScript