打字稿工作流程的新手。在使用 node + JS 时,我通常有一个dev
形式为:nodemon index.js
. 使用打字稿,我看到我有两个选择:
nodemon --exec "ts-node index.ts"
concurrently "tsc -w" "nodemon -w dist dist/index.js"
哪一个在打字稿社区中使用得更频繁?有什么影响?
打字稿工作流程的新手。在使用 node + JS 时,我通常有一个dev
形式为:nodemon index.js
. 使用打字稿,我看到我有两个选择:
nodemon --exec "ts-node index.ts"
concurrently "tsc -w" "nodemon -w dist dist/index.js"
哪一个在打字稿社区中使用得更频繁?有什么影响?