Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对tsc和之间的区别感到非常困惑ts-node。我正在学习 TypeScript,我通常.ts使用命令转换服务器文件tsc。
tsc
ts-node
.ts
现在,我正在接近nestjs框架,我看到它使用ts-node.
那么两者有什么区别呢?我应该使用哪一个?
主要区别在于 tsc 根据您的 tsconfig 编译所有文件。相反,ts-node 会从入口文件开始,并根据导入/导出逐步通过树转译文件
最常见的做法是tsc用于生产构建ts-node和--watch与nodemon. 这是我经常用于我的节点/打字稿项目的开发模式的命令:
--watch
nodemon
"dev": "nodemon -w *.ts -e ts -x ts-node --files -H -T ./src/index.ts"