(config)
| 215 | } |
| 216 | |
| 217 | _normalizeAndApplyShims(config) { |
| 218 | this._normalizeConfig(config); |
| 219 | |
| 220 | if (config.kind === "project") { |
| 221 | this._applyProjectShims(config); |
| 222 | } |
| 223 | return config; |
| 224 | } |
| 225 | |
| 226 | async _createConfigurationFromShim() { |
| 227 | const config = this._applyProjectShims(); |
no test coverage detected