I'm wondering how to run Sequelize migrations on a typescript feathersjs project generated by feathers-plus CLI.
The guide at https://github.com/feathersjs-ecosystem/feathers-sequelize is only concerned with JS project. TS project where sequelize migrations config created exactly according to the doc will fail with not being able to find the app module.
ERROR: Cannot find module '../src/app'
How to get it working? (I don't want to go all out Typescript on Sequelize with 3rd party typings as I smell it would bring a whole new league of issues)