Cannot find name 'require'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node` and then add 'node' to the types field in your tsconfig. const { PrismaClient } = require("@prisma/client");
👉🏻 tsconfig.json 에러
npm i --save -dev @types/node
compilerOptions "types"에 "node" 추가
Last updated 6 months ago