File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ async function main() {
84
84
. option ( "--no-class" , "Don't create and register custom Parse.Object" )
85
85
. option ( "--no-sdk" , "Don't use Parse JS SDK, just TS without dependencies" )
86
86
. option ( "--global-sdk" , "Use a global Parse JS SDK" , false )
87
+ . option ( "--is_esm" , "Use ES module imports in generated files." , false )
87
88
. action ( async ( typescriptPath , options ) => {
88
89
const cfg = await loadConfig ( program . opts ( ) . configPath ) ;
89
90
Original file line number Diff line number Diff line change @@ -419,6 +419,7 @@ export async function typescript(
419
419
sdk ?: boolean ; // "default" | "node" | "global" | "none";
420
420
globalSdk ?: boolean ;
421
421
class ?: boolean ;
422
+ is_esm ?: boolean ;
422
423
}
423
424
) {
424
425
let schema = await getRemoteSchema ( cfg ) ;
@@ -574,9 +575,15 @@ export async function typescript(
574
575
) ;
575
576
576
577
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
+ }
580
587
} ) ;
581
588
582
589
if ( internalDependencies . length > 0 ) {
You can’t perform that action at this time.
0 commit comments