@gdjiami/cli
Version:
CLI for build front end project.
25 lines (24 loc) • 581 B
TypeScript
export default function terserPluginOptions(shouldUseSourceMap: boolean): {
terserOptions: {
parse: {
ecma: number;
};
compress: {
ecma: number;
warnings: boolean;
comparisons: boolean;
inline: number;
};
mangle: {
safari10: boolean;
};
output: {
ecma: number;
comments: boolean;
ascii_only: boolean;
};
};
parallel: boolean;
cache: boolean;
sourceMap: boolean;
};