export function collapsed(...files: FileConfig[]): FileConfig[] {
  return files.map(file => Object.assign({}, file, { collapsed: true }));
}