-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Migration files with *.ts extension #60
Comments
I would appreciate support for Typescript files as well 👍 |
This day and age, Typescript is so popular and support is incredibly easy to add it's rare to find a relevant project that doesn't support it even if it's just via a definition file. Hopefully this makes it into the next release! |
Same here, curious if you can somehow allow parsing of the files using |
Here is how I did it:
On development machine, use |
Hey, we use Typescript + Mongoose in our project and tried use migrate-mongoose for adding migrations. But migrate-mongoose filtering files by reg-pattern,
/\d{13,}\-.+.js$/.test(file))
can we change a little/\d{13,}\-.+.(j|t)s$/.test(file))
. Or create new config param for this.Thanks
The text was updated successfully, but these errors were encountered: