(item: ConfigPluginV1.Spec)
| 75 | |
| 76 | // Normalize a config item into the loader's internal representation. |
| 77 | function plan(item: ConfigPluginV1.Spec): Plan { |
| 78 | const spec = ConfigPlugin.pluginSpecifier(item) |
| 79 | return { spec, options: ConfigPlugin.pluginOptions(item), deprecated: isDeprecatedPlugin(spec) } |
| 80 | } |
| 81 | |
| 82 | // Resolve a configured plugin into a concrete entrypoint that can later be imported. |
| 83 | // |
no test coverage detected