mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
3c6e0e8ef8
* Add and configure eslint-plugin-import * Fix the lint:ts npm command * Autofix + prettier all the files * Manually fix remaining files * Move jquery code in jest-setup to external file to safely reorder imports * Resolve issue caused by circular dependencies within Prometheus * Update .betterer.results * Fix missing // @ts-ignore * ignore iconBundle.ts * Fix missing // @ts-ignore
23 lines
619 B
TypeScript
23 lines
619 B
TypeScript
import { PluginState } from '@grafana/data';
|
|
import { config, GrafanaBootConfig } from '@grafana/runtime';
|
|
// Legacy binding paths
|
|
export { config, GrafanaBootConfig as Settings };
|
|
|
|
let grafanaConfig: GrafanaBootConfig = config;
|
|
|
|
export default grafanaConfig;
|
|
|
|
export const getConfig = () => {
|
|
return grafanaConfig;
|
|
};
|
|
|
|
export const updateConfig = (update: Partial<GrafanaBootConfig>) => {
|
|
grafanaConfig = {
|
|
...grafanaConfig,
|
|
...update,
|
|
};
|
|
};
|
|
|
|
// The `enable_alpha` flag is not exposed directly, this is equivalent
|
|
export const hasAlphaPanels = Boolean(config.panels?.debug?.state === PluginState.alpha);
|