Articles in this series
Setup your dev environment with Parcel and Typescript. · Typescript is a technology that grows every day. Companies like Slack, Airbnb, or Google are...
Sometimes we have a long list of imports, with files that come from the same place, it makes our code noisy and a bit longer, something like: import...
I'm refactoring an Angular code, and I need to have the same filenames while finishing the refactor. My solution was to rename my imports. It is a...
Today, a friend ask about the difference between extends and implements. class Media { format: string; } class Video extends Media {} class Image...
Learn how compiles work with tsconfig. · I want to show a small overview of the typescript compiler, and the tsc is responsible for compiling our...
In typescript or Angular apps, we can avoid having ugly paths like the following example. import { BookMark } from 'src/app/models/bookmark'; import {...