在使用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?
1条答案
按热度按时间olmpazwi1#
可以重复
-r
选项。请尝试以下操作: