From 220c1cab847519e63d1879c68d9b59930f80c601 Mon Sep 17 00:00:00 2001 From: Henning Dieterichs Date: Wed, 19 Nov 2025 19:24:48 +0100 Subject: [PATCH] Fixes https://github.com/microsoft/monaco-editor/issues/5113 (#5118) --- src/language/typescript/monaco.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/language/typescript/monaco.contribution.ts b/src/language/typescript/monaco.contribution.ts index 95d7da63..bd3cf2c7 100644 --- a/src/language/typescript/monaco.contribution.ts +++ b/src/language/typescript/monaco.contribution.ts @@ -67,7 +67,7 @@ type CompilerOptionsValue = | null | undefined; -interface CompilerOptions { +export interface CompilerOptions { allowJs?: boolean; allowSyntheticDefaultImports?: boolean; allowUmdGlobalAccess?: boolean;