export function getDefaultConfig()

in src/config/config.ts [41:45]


export function getDefaultConfig(id: TemplateId): Config {
  // We know that there is one template for each id, so we can assume this is not null here.
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  return templates.find((template) => template.id === id)!.config;
}