next js typescript

JavaScript
npx create-next-app --example with-typescript with-typescript-app
# or
yarn create next-app --example with-typescript with-typescript-app// create a tsconfig
touch tsconfig.json

// run command `npm run dev` 
npm run devyarn add --dev typescript @types/react @types/node
Source

Also in JavaScript: