mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 07:00:11 +01:00
9 lines
355 B
TypeScript
9 lines
355 B
TypeScript
import * as lsp from '@vscode/monaco-lsp-client';
|
|
import { css, html, json, typescript } from './languages/register.all';
|
|
import './features/register.all';
|
|
|
|
// ensure that the the main monaco-editor entry-point loads all features from monaco-editor-core
|
|
import 'monaco-editor-core';
|
|
|
|
export * from './editor';
|
|
export { css, html, json, typescript, lsp };
|