Enable Schema Analyzer in MPAC (#805)

This commit is contained in:
Tanuj Mittal
2021-05-19 11:32:12 -07:00
committed by GitHub
parent c2de2f2eec
commit ac753b0780
3 changed files with 9 additions and 2 deletions

View File

@@ -27,6 +27,7 @@ export interface ConfigContext {
hostedExplorerURL: string;
armAPIVersion?: string;
allowedJunoOrigins: string[];
enableSchemaAnalyzer: boolean;
}
// Default configuration
@@ -61,6 +62,7 @@ let configContext: Readonly<ConfigContext> = {
"https://tools-staging.cosmos.azure.com",
"https://localhost",
],
enableSchemaAnalyzer: false,
};
export function resetConfigContext(): void {