From a7dd52e2a1c5738769e128be0c1863e73c33b1b6 Mon Sep 17 00:00:00 2001 From: Cuecuexiaoyu Date: Thu, 11 Sep 2025 20:16:24 +0800 Subject: [PATCH] modifiy path name Signed-off-by: Cuecuexiaoyu Change-Id: I37025ff3ab27a7dd7f40c27b8583c2e2c0bb630b --- compiler/src/fast_build/ets_ui/rollup-plugin-ets-typescript.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/src/fast_build/ets_ui/rollup-plugin-ets-typescript.ts b/compiler/src/fast_build/ets_ui/rollup-plugin-ets-typescript.ts index b81e6dd3b..2a70bb07a 100644 --- a/compiler/src/fast_build/ets_ui/rollup-plugin-ets-typescript.ts +++ b/compiler/src/fast_build/ets_ui/rollup-plugin-ets-typescript.ts @@ -615,7 +615,7 @@ async function processNoTargetSourceFile(id: string, code: string, parentEvent?: const newSourceFile: ts.SourceFile = ts.createSourceFile(root.id, root.code, etsCheckerCompilerOptions.target, true, undefined, etsCheckerCompilerOptions); newSourceFile.originalFileName = newSourceFile.fileName; - newSourceFile.resolvePath = root.id; + newSourceFile.resolvedPath = root.id; newSourceFile.path = root.id; globalProgram.program.processImportedModules(newSourceFile, true); globalProgram.program.setProgramSourceFiles(newSourceFile); -- Gitee