Partager via


Bits and Bytes: Adding TypeScript Support to an Existing Project

In the previous Bits and Bytes, we looked at Getting Started with TypeScript, now we will see how we can add TypeScript support to existing projects. Similar to getting up and running we are going to need to make sure Node.js and our TypeScript compiler is installed. Once that is complete we can add a tsconfig.json file to support our compiler options. For info on getting up and running check out Getting Started with TypeScript. Once we have TypeScript support we can code away within our project. But most developers have third party JavaScript libraries to help with their website development. From…