liferay-npm-bundler-preset-reactjs
Version:
liferay npm bundler preset react
34 lines (33 loc) • 871 B
TypeScript
/**
* SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
* SPDX-License-Identifier: LGPL-3.0-or-later
*/
import FilePath from '../file-path';
/**
* Reflects miscellaneous project configuration values.
*/
export default class Misc {
/**
*
* @param {Project} project
*/
constructor(project: any);
/**
* Get maximum number of files to process in parallel in any parallelizable
* operation.
*/
get maxParallelFiles(): number;
/**
* Whether or not to track usage
*/
get noTracking(): boolean;
/**
* Get the path to the report file or undefined if no report is configured.
*/
get reportFile(): FilePath | undefined;
/**
* Whether or not to dump detailed information about what the tool is doing
*/
get verbose(): boolean;
private readonly _project;
}