From 069411e49819aa87c880c7c5ff2ab04ecb68eea3 Mon Sep 17 00:00:00 2001 From: Ron Spickenagel Date: Mon, 4 Dec 2023 22:09:19 -0500 Subject: [PATCH] fix: TsExtras 'ts' type registering as 'any' (fixes #127) --- projects/core/shared/plugin-types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/core/shared/plugin-types.ts b/projects/core/shared/plugin-types.ts index 3fb26fc..e9321d1 100644 --- a/projects/core/shared/plugin-types.ts +++ b/projects/core/shared/plugin-types.ts @@ -1,7 +1,8 @@ /** * NOTE: This file is used during the build process for patch as well */ -import type ts from 'typescript'; +// Note: Leave as import-star, since we don't ship built file with esModuleInterop +import type * as ts from 'typescript'; /* ****************************************************************************************************************** */