From 567095a2c58f21db69e8707323d71b32a26fa11b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Burzy=C5=84ski?= Date: Thu, 11 Aug 2022 12:55:36 +0200 Subject: [PATCH] Export `CustomTSWebWorkerFactory` type --- src/language/typescript/monaco.contribution.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/language/typescript/monaco.contribution.ts b/src/language/typescript/monaco.contribution.ts index ce465dfe35..de7e2c710f 100644 --- a/src/language/typescript/monaco.contribution.ts +++ b/src/language/typescript/monaco.contribution.ts @@ -6,6 +6,7 @@ import type * as mode from './tsMode'; import { typescriptVersion as tsversion } from './lib/typescriptServicesMetadata'; // do not import the whole typescriptServices here import { languages, Emitter, IEvent, IDisposable, Uri } from '../../fillers/monaco-editor-core'; +export { CustomTSWebWorkerFactory } from './tsWorker'; //#region enums copied from typescript to prevent loading the entire typescriptServices ---