File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -22,5 +22,3 @@ yarn-error.log*
2222.env
2323
2424prisma /dev.db *
25- # ignoring only for the library
26- prisma /client /
Original file line number Diff line number Diff line change @@ -7,11 +7,12 @@ datasource db {
77
88generator client {
99 provider = " prisma-client "
10- output = " ./client "
10+ // only generated to node_modules for the old @prisma/client import, to build the library
11+ output = " ../node_modules/.prisma/client "
1112}
1213
1314model User {
1415 id Int @id @default (autoincrement () )
1516 email String @unique
1617 name String ?
17- }
18+ }
Original file line number Diff line number Diff line change 1212 "baseUrl" : " ./" ,
1313 "incremental" : true ,
1414 "paths" : {
15- "@prisma/client" : [" prisma/client/client.ts" ]
15+ "@prisma/client" : [" node_modules/. prisma/client/client.ts" ]
1616 }
1717 }
1818}
You can’t perform that action at this time.
0 commit comments