DEV Community

Madhav Jha
Madhav Jha

Posted on

Typescript project starter

Many times you just want an index.ts and package.json to run a simple script like project for typescript.

What is the bare minimum way to do that?

nvm use
npm init -y
npm install typescript --save-dev
Enter fullscreen mode Exit fullscreen mode

After that follow this guide.

https://blog.appsignal.com/2022/01/19/how-to-set-up-a-nodejs-project-with-typescript.html

Top comments (0)