| 93 | }; |
| 94 | |
| 95 | export interface ExtendedSpecConfig extends SpecConfig { |
| 96 | entryFile: Config['entryFile']; |
| 97 | noImplicitAdditionalProperties: Exclude<Config['noImplicitAdditionalProperties'], undefined>; |
| 98 | controllerPathGlobs?: Config['controllerPathGlobs']; |
| 99 | } |
| 100 | |
| 101 | export const validateSpecConfig = async (config: Config): Promise<ExtendedSpecConfig> => { |
| 102 | if (!config.spec) { |
nothing calls this directly
no outgoing calls
no test coverage detected