prisma-upgrade-v7-esm-support
Installation
SKILL.md
ESM Support
Prisma ORM v7 ships as an ES module only. Your project must be configured for ESM.
Required Changes
package.json
Add the type field:
{
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js"
}
}