Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export async function getProjectNameAsync(projectRoot: string): Promise {
const { exp } = await ConfigUtils.readConfigJsonAsync(projectRoot, true);
const { webName } = ConfigUtils.getNameFromConfig(exp);
return webName;
}