// 需要export的文件类型
export const isExportType = ['ts', 'js'];

// 格式化语言功能映射
export const typeToName: {[key: string]: string} = {
  ts: 'typescript',
  json: 'json',
  js: 'typescript'
}