我只是尝试执行从Windows终端监视文件的代码:
tsc -w .\app.ts
我收到消息:
error TS5001: The current host does not support the --watch option.
现在我已经研究了其他解决方案,并且我看到GitHub说尝试这样的事情,因为显然tsc.exe没有实现文件监视,而node.js也是如此。
node tsc.js -w app.ts
但是返回了另一条错误消息:
module.js:487 throw error;
Error: Cannot find module 'C:.\..\tsc.js
我需要做些什么才能超越这个问题?