Hello, friends. I've ran into a conundrum: I can either transpile my .ts migrations to .js, and then run them with typeorm in node mode, or, as typeorm itself is made with typescript in mind, I can just separate the migration files from compilation, and run them in their .ts form, like with "ts-node typeorm migration:run". So would running typescript files in production, but not on the server code itself, be a problem?
Also, considering I'll run the transpiled migrations in production, I'm having trouble thinking about the package.json script to do it. For development, I can use the script
```"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js"````
to run
yarn typeorm migration:run
but then, if I want to run the transpiled migrations, how would I separate? should I create another script, like:
"typeorm:prod": "node ./node_modules/typeorm/cli.js"
to run the .js migrations?
Thanks in advance to anybody willing to help me with this!