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