export=: {
    plugins: (string | any[])[];
    presets: (string | (string | {
        corejs: any;
        exclude: string[];
        loose: boolean;
        modules: string;
        targets: any;
        useBuiltIns: string;
    } | {
        corejs?: undefined;
        exclude: string[];
        loose: boolean;
        modules: string;
        targets: any;
        useBuiltIns?: undefined;
    })[])[];
}

Type declaration

  • plugins: (string | any[])[]
  • presets: (string | (string | {
        corejs: any;
        exclude: string[];
        loose: boolean;
        modules: string;
        targets: any;
        useBuiltIns: string;
    } | {
        corejs?: undefined;
        exclude: string[];
        loose: boolean;
        modules: string;
        targets: any;
        useBuiltIns?: undefined;
    })[])[]