From 698aa91109c142e2d68056a09c9c4a7a438b3092 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Thu, 12 Sep 2024 12:02:48 +0200 Subject: [PATCH] build: turn on advanced module detection --- src/Umbraco.Web.UI.Client/tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/tsconfig.json b/src/Umbraco.Web.UI.Client/tsconfig.json index 1d69cbe783..58a1fd3973 100644 --- a/src/Umbraco.Web.UI.Client/tsconfig.json +++ b/src/Umbraco.Web.UI.Client/tsconfig.json @@ -9,7 +9,9 @@ DON'T EDIT THIS FILE DIRECTLY. It is generated by /devops/tsconfig/index.js --------------------------------------------------------------------------- */ { "compilerOptions": { - "module": "esnext", + "module": "preserve", + "moduleDetection": "force", + "verbatimModuleSyntax": true, "target": "es2022", "lib": ["es2022", "dom", "dom.iterable"], "outDir": "./types",