(previewFeatures: string[])
| 550 | } |
| 551 | |
| 552 | function buildPrismaSkipTs(previewFeatures: string[]) { |
| 553 | if (previewFeatures.includes('strictUndefinedChecks')) { |
| 554 | return ` |
| 555 | /** |
| 556 | * Prisma.skip |
| 557 | */ |
| 558 | export import skip = runtime.skip |
| 559 | ` |
| 560 | } |
| 561 | |
| 562 | return '' |
| 563 | } |
| 564 | |
| 565 | function buildPrismaSkipJs(previewFeatures: string[]) { |
| 566 | if (previewFeatures.includes('strictUndefinedChecks')) { |
no test coverage detected