laravel-mix-glob
Version:
Laravel mix extension that add support for globs usage with an extensive concise api. For a more natural boosted productivity and dynamic. Configure once and forget about adding the files each time.
46 lines (45 loc) • 981 B
TypeScript
export declare const SRC_OUT_FUNCTIONS: string[];
/**
* Per function configuration. And override
* ext: the output files extension mapping set for the function
*
* Note: †his is one type of mapping. Precedency matter check it in the doc.
*/
export declare const MIX_DEFAULT_FUNCTIONS_SETTINGS: {
js: {
outputMapping: {
ext: string;
};
};
ts: {
outputMapping: {
ext: string;
};
};
sass: {
outputMapping: {
ext: string;
};
};
css: {
outputMapping: {
ext: string;
};
};
postCss: {
outputMapping: {
ext: string;
};
};
less: {
outputMapping: {
ext: string;
};
};
stylus: {
outputMapping: {
ext: string;
};
};
};
export type TMixFuncSettings = typeof MIX_DEFAULT_FUNCTIONS_SETTINGS;