0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Prismaのseed.tsで型情報を使おうとしてハマった話 (The requested module '@prisma/client' is a CommonJS module, which may not support all module.exports as named exports. CommonJS modules can always be imported via the default export,)

Last updated at Posted at 2025-03-11

遅ればせながらPrismaを使ってみたのですが、seed.tsで生成された型情報を使おうとしてドハマリしたのでメモ書き。
タイトルがアホみたいに長いのは、同じ問題でハマっている人が検索でヒットしやすければよいと思った弊害です。

Schema.prisma と Seed.ts

以下のようなモデルの定義を行いました。

schema.prisma
model User {
  id                 Int      @id @default(autoincrement())
  first_name         String
  last_name          String
  first_name_kana    String
  last_name_kana     String
  created_at         DateTime @default(now())
  updated_at         DateTime @updatedAt
  deleted_at         DateTime? // 削除日時
}

その後、npx prisma migrate dev --name initで初期テーブルを作成、
npx prisma generateで型情報の生成を行いました。

ここまでは問題なし。

次に以下の様にseed.tsを作成しました。

seed.ts
import { User, PrismaClient } from '@prisma/client'

const prisma = new PrismaClient()

async function createUsers(): Promise<User[]> {
  const userData = [
    {
      id: 1,
      first_name: 'アカウント',
      last_name: '管理',
      first_name_kana: 'あかうんと',
      last_name_kana: 'かんり',
    }
  ]

  const results: User[] = []
  for (const user of userData) {
    results.push(await prisma.user.upsert({
      where: { id: user.id },
      update: {},
      create: user,
    }))
  }

  return results
}

async function main() {
  console.info('create user data')
  const createdUsers = await createUsers()
  console.log(createdUsers)
}

main()
  .then(async () => {
    await prisma.$disconnect()
  })
  .catch(async (e) => {
    console.error(e)
    await prisma.$disconnect()
    process.exit(1)
  })

VSCode上でも特にエラー表示等もなく、これも問題なさそう。
package.jsonには以下の通りに設定を行いました。

// ...追加部分
  "prisma": {
    "seed": "ts-node prisma/seed.ts"
  },
//...

エラー

これでnpx prisma db seedを実行すると、

SyntaxError: Named export 'User' not found. The requested module '@prisma/client' is a CommonJS module, which may not support all module.exports as named exports.
CommonJS modules can always be imported via the default export, for example using:

import pkg from '@prisma/client';
const { User } = pkg;

うん、?
@prisma/clientモジュールがCommonJSモジュールであり、ESモジュールとしての名前付きエクスポートをサポートしていないうんぬん。

言われた通りの分割宣言や、エラー文言で検索して出てきたseedコマンドの実行オプションに--compiler-options {\"module\":\"CommonJS\"}を追加する方法でもうまくいかない。

seed.tsで型情報をつかわないでanyにしておけば普通に動くんだけど、いまいちスッキリしない。
(こういうことに拘っちゃうのありますよねぇ)

解決方法: ts-nodeを使わない

まずはts-nodeをクビにします。
npm uninstall ts-node

その後、tsxを新規で採用します。
npm install --save-dev tsx

package.jsonも修正。

// ...修正
  "prisma": {
    "seed": "tsx prisma/seed.ts"
  },
// ...

これで無事、型情報を使用しつつ、npx prisma db seedが実行できました。

ts-node, tsxって何

tsxと聞くとReactのJSXを連想すると思いますが、全然関係ない罠です。

どちらも、TypeScriptのコードをNodeで直接実行するためのツールになります。
いろいろ調べるとts-nodeの更新は止まっているようで、最近はtsxを利用するのが主流だそう。

今回問題になったのは、CommonJSECMAScript Moduleの環境?差異にあって、ts-codeCommonJSECMAScript Moduleの混在環境では動いてくれないことが多く、tsxはだいたい動いてくれるという状態だそうです。

これで3時間くらいハマりました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?