UNPKG

@ant-design/tools

Version:
10 lines (9 loc) 341 B
import type { TransformOptions } from '@babel/core'; interface BabelConfigOptions { enabledReactCompiler?: boolean; } interface BabelConfig extends TransformOptions { cacheDirectory?: boolean; } declare function getBabelCommonConfig(modules?: boolean, options?: BabelConfigOptions): BabelConfig; export default getBabelCommonConfig;