During the development process, we may repeat a lot of processes that we could automate or at least group them into tasks to help ourselves out. This section is going to show you some ideas for tasks that might help you not spend so much time on a repeated process.
If you press ⇧⌘B (or Ctrl + Shift + B on Windows/Linux) from the global Terminal menu, you will see the build tasks that are available:
Selecting tsc:build - tsconfig.json will produce the .js files in the dist folder, as well as the .js.map files that will be created next to the .ts files since the outDir.
Another task that's available is tsc:watch tsconfig.json, which makes the TypeScript compiler watch for changes to your TypeScript files and runs the transpiler on each change.
There is also the possibility to define the TypeScript build...