gpt4 book ai didi

node.js - ts-node 将选项传递给 Node

转载 作者:行者123 更新时间:2023-12-02 19:07:46 26 4
gpt4 key购买 nike

有没有办法在调用 ts-node 时将选项传递给 Node ?我正在尝试在 Node 中使用一个实验性功能,如果它能与 ts-node 一起使用,那就太好了。

这就是我目前正在做的事情:

ts-node ./src/utils/repl.ts -- --experimental-repl-await

最佳答案

我让它以这种方式工作:

node --experimental-repl-await -r ts-node/register ./src/utils/repl.ts

来自ts-node documentation :

Note: If you need to use advanced node.js CLI arguments (e.g. --inspect), use them with node -r ts-node/register instead of the ts-node CLI.

<小时/>

另一种方法是使用NODE_OPTIONS环境变量。例如,在 *nix 风格的 shell 中:

NODE_OPTIONS=--experimental-repl-await ts-node ./src/utils/repl.ts

关于node.js - ts-node 将选项传递给 Node ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54695736/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com