【勉強メモ】Next.js を Typescript で扱う初期準備


create-next-app から Tyescript を設定する

with-typescriptテンプレートを使用して、create-next-appから作成する。

npx create-next-app next-ts-sample-app --example with-typescript

その後は yarn dev コマンドで、http://localhost:3000にアクセスでき、Typescript で Next.js を開発できるようになる。

npx create-next-app --example with-typescript
cd next-ts-sample-app
yarn dev

↓結果

以上。