TypeScript Setup
Below are the tools you need to set up with the environment to start writing TypeScript code: Node.js – Node.js is the environment in which you will run the TypeScript compiler. TypeScript compiler – a Node.js module that compiles TypeScript into JavaScript. If you use JavaScript for node.js, you can install the ts-node module. It is a TypeScript execution and REPL for node.js Visual Studio Code – It is a code editor that supports TypeScript. However, you can use your favourite editor. If you use VS Code, you can install the following extension to speed up the development process: Live Server...
Read More