grafana/public/lib/monaco-languages/kusto.ts
Jack Westbrook 1c3606cebe
Kusto: Move loading @kusto/language-service off the main thread (#72006)
fix(kusto): move kusto off the main thread to prevent conflict with window.System
2023-07-20 12:36:39 +02:00

6 lines
173 B
TypeScript

export default function loadKusto() {
return new Promise<void>((resolve) =>
__non_webpack_require__(['vs/language/kusto/monaco.contribution'], () => resolve())
);
}