tsconfig.json 設定

tsconfig.json とは、TypeScript プロジェクトの設定ファイルで、プロジェクト全体の情報やコンパイルオプションなどが記載されています。コンポーネントなどのファイルを import する際に相対パスではなく、絶対パスで指定できるように tsconfig.json を編集します。

compilerOptions の中に、"baseUrl": "./", と書くと、絶対パスでインポートできるようになります。

import Pagination from '../../..components/Pagination'import Pagination from 'components/Pagination'

tsconfig.json

{
  "compilerOptions": {
    "target": "es5",
    "lib": ["dom", "dom.iterable", "esnext"],
    "allowJs": true,
    "skipLibCheck": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "noEmit": true,
    "esModuleInterop": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "jsx": "preserve",
    "incremental": true,
    "baseUrl": "./", // 追加
    "paths": {
      "@/*": ["./src/*"],
      "/*": ["*"]
    },
    "jsxImportSource": "@emotion/react"
  },
  "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
  "exclude": ["node_modules"]
}

編集が終わったら、開発サーバーを再起動し、http://localhost:3000 にアクセスして、ページが正常に表示されることを確認します。

npm run dev