After the new typeorm release a have some troubles to work with migrations.
Some time ago i was using that code and it work
entities: ['./src/modules/**/infra/typeorm/entities/*.ts'],
migrations: ['./src/shared/infra/typeorm/migrations/*.ts'],
cli: {
migrationsDir: './src/shared/infra/typeorm/migrations'
}
But now i cant specify the cli property. To create a new migrations i have to specify the entire migration path
npm run typeorm migration:create ./src/database/migrations -n SomeTest
is there another way to do that without specify the entire path?