Skip to main content
function getProjectConfig(): Promise<ProjectConfig>;
Gets the project configuration for the current project.

Returns

Promise<ProjectConfig> The project configuration.

Example

const result = await getProjectConfig();
console.log("Project name:", result.name);