(value: string | undefined)
| 261 | resolvedPath: string, |
| 262 | ): PrismaConfigInternal { |
| 263 | function resolvePath(value: string | undefined) { |
| 264 | if (!value) { |
| 265 | return undefined |
| 266 | } |
| 267 | |
| 268 | return path.resolve(path.dirname(resolvedPath), value) |
| 269 | } |
| 270 | |
| 271 | return { |
| 272 | ...prismaConfig, |
no outgoing calls
no test coverage detected