Skip to content

Commit fa1b4df

Browse files
committed
Add type hints
1 parent 4139744 commit fa1b4df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/generators/src/app/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ export const generate = (ctx: AppGeneratorArguments) =>
5050
.then(initializeBaseContext())
5151
.then((ctx) => ({
5252
...ctx,
53-
dependencies: [],
54-
devDependencies: []
53+
dependencies: [] as string[],
54+
devDependencies: [] as string[]
5555
}))
5656
.then(
5757
prompt((ctx) => [

0 commit comments

Comments
 (0)