Skip to content

Commit 6809eea

Browse files
authored
Bump to Typescript 5.7.2 (#28213)
1 parent ac8c353 commit 6809eea

File tree

3 files changed

+381
-31
lines changed

3 files changed

+381
-31
lines changed

cli/program.mts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,13 @@ export const buildJHipster = async ({
401401
...buildOptions
402402
}: BuildJHipsterOptions = {}) => {
403403
createEnvBuilder =
404-
createEnvBuilder ?? (async options => EnvironmentBuilder.create(options).prepare({ blueprints, lookups, devBlueprintPath }));
404+
createEnvBuilder ??
405+
(async options =>
406+
EnvironmentBuilder.create(options).prepare({ blueprints, lookups, devBlueprintPath } as {
407+
blueprints?: Record<string, string>;
408+
lookups?: any[];
409+
devBlueprintPath?: string;
410+
}));
405411
if (!env) {
406412
envBuilder = envBuilder ?? (await createEnvBuilder());
407413
env = env ?? envBuilder.getEnvironment();

0 commit comments

Comments
 (0)