Skip to content

Commit 2ed013d

Browse files
committed
Added option to generate esm conform types
1 parent 261cd99 commit 2ed013d

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

src/cli.ts

+1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ async function main() {
8484
.option("--no-class", "Don't create and register custom Parse.Object")
8585
.option("--no-sdk", "Don't use Parse JS SDK, just TS without dependencies")
8686
.option("--global-sdk", "Use a global Parse JS SDK", false)
87+
.option("--is_esm", "Use ES module imports in generated files.", false)
8788
.action(async (typescriptPath, options) => {
8889
const cfg = await loadConfig(program.opts().configPath);
8990

src/index.ts

+10-3
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,7 @@ export async function typescript(
419419
sdk?: boolean; // "default" | "node" | "global" | "none";
420420
globalSdk?: boolean;
421421
class?: boolean;
422+
is_esm?: boolean;
422423
}
423424
) {
424425
let schema = await getRemoteSchema(cfg);
@@ -574,9 +575,15 @@ export async function typescript(
574575
);
575576

576577
internalDependencies.forEach((dep) => {
577-
file += `import type { ${p(dep)}${
578-
options.sdk ? "" : "Attributes"
579-
} } from "./${p(dep)}";\n`;
578+
if (options.is_esm) {
579+
file += `import type { ${p(dep)}${
580+
options.sdk ? "" : "Attributes"
581+
} } from "./${p(dep)}".js;\n`;
582+
} else {
583+
file += `import type { ${p(dep)}${
584+
options.sdk ? "" : "Attributes"
585+
} } from "./${p(dep)}";\n`;
586+
}
580587
});
581588

582589
if (internalDependencies.length > 0) {

0 commit comments

Comments
 (0)