(config: DeepMutable<PrismaConfigInternal>, configInput: PrismaConfig)
| 158 | } |
| 159 | |
| 160 | function defineDatasource(config: DeepMutable<PrismaConfigInternal>, configInput: PrismaConfig) { |
| 161 | const { datasource } = configInput |
| 162 | Object.assign(config, { datasource }) |
| 163 | debug('[config.datasource]: %o', datasource) |
| 164 | } |
| 165 | |
| 166 | function defineExtensionsConfig(config: DeepMutable<PrismaConfigInternal>, configInput: PrismaConfig) { |
| 167 | if (!configInput['extensions']) { |
no test coverage detected
searching dependent graphs…