ts-node
ts-node copied to clipboard
Export `ts-node/esm-register` to use with `--import`
Desired Behavior
Register the ts-node/esm loader using the register function. Example of use:
node --import=ts-node/esm-register
The content of the file would be something like this:
import { register } from 'node:module'
import { pathToFileURL } from 'node:url'
register('ts-node/esm', pathToFileURL('./'))
Is this request related to a problem?
No.
Alternatives you've considered
.
Additional context
.
For further context and alternative example see :- https://github.com/TypeStrong/ts-node/issues/2100