npm `ts-node -r`选项的多个参数

20jt8wwn  于 2023-06-23  发布在  其他
关注(0)|答案(1)|浏览(156)

在使用ts-node -r执行之前,我想在package.json脚本中添加多个require

"scripts": {
    "start": "ts-node -r dotenv/config newrelic src/index.ts",
    }

它不允许我同时添加“dotenv/config”和“newrelax”。但是如果我一次只使用其中一个,它工作得非常好。

"scripts": {
    "start": "ts-node -r dotenv/config src/index.ts",
    }

"scripts": {
    "start": "ts-node -r newrelic src/index.ts",
    }

有没有办法让我同时要求两个Libs?

olmpazwi

olmpazwi1#

可以重复-r选项。
请尝试以下操作:

ts-node -r dotenv/config -r newrelic index.ts

相关问题