* `configInput.typedSql` is forwarded to `config.typedSql` as is.
(config: DeepMutable<PrismaConfigInternal>, configInput: PrismaConfig)
| 113 | * `configInput.typedSql` is forwarded to `config.typedSql` as is. |
| 114 | */ |
| 115 | function defineTypedSqlConfig(config: DeepMutable<PrismaConfigInternal>, configInput: PrismaConfig) { |
| 116 | if (!configInput.typedSql) { |
| 117 | return |
| 118 | } |
| 119 | |
| 120 | config.typedSql = configInput.typedSql |
| 121 | debug('[config.typedSql]: %o', config.typedSql) |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * `configInput.views` is forwarded to `config.views` as is. |