File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -39,13 +39,19 @@ export async function typesBuild(ctx: BuildContext): Promise<void> {
39
39
const untypedJiti = createJiti ( ctx . options . rootDir , options . jiti ) ;
40
40
41
41
const distDir = entry . outDir ! ;
42
- const srcConfig =
42
+
43
+ let rawSchema =
43
44
( ( await untypedJiti . import ( resolve ( ctx . options . rootDir , entry . input ) , {
44
45
try : true ,
45
46
} ) ) as InputObject ) || ( { } as InputObject ) ;
46
47
48
+ const rawSchemaKeys = Object . keys ( rawSchema ) ;
49
+ if ( rawSchemaKeys . length === 1 && rawSchemaKeys [ 0 ] === "default" ) {
50
+ rawSchema = ( rawSchema as any ) . default ;
51
+ }
52
+
47
53
const defaults = entry . defaults || { } ;
48
- const schema = await resolveSchema ( srcConfig , defaults ) ;
54
+ const schema = await resolveSchema ( rawSchema , defaults ) ;
49
55
50
56
await ctx . hooks . callHook ( "untyped:entry:schema" , ctx , entry , schema ) ;
51
57
You can’t perform that action at this time.
0 commit comments