fix: Update a few more entry.js to entry.mjs paths.

This commit is contained in:
cpojer
2026-01-31 17:44:43 +09:00
parent 821ed35be1
commit 4b7406719c
5 changed files with 11 additions and 11 deletions

View File

@@ -12,7 +12,7 @@ const compiler = compilerOverride === "tsc" ? "tsc" : "tsgo";
const projectArgs = ["--project", "tsconfig.json"];
const distRoot = path.join(cwd, "dist");
const distEntry = path.join(distRoot, "entry.js");
const distEntry = path.join(distRoot, "entry.mjs");
const buildStampPath = path.join(distRoot, ".buildstamp");
const srcRoot = path.join(cwd, "src");
const configFiles = [path.join(cwd, "tsconfig.json"), path.join(cwd, "package.json")];