Typescript noEmit use case

社会主义新天地 提交于 2020-12-08 05:26:29

问题


What is the use case for noEmit in Typescript? I'm interested because I want to see if I can use this for development where I'll compile and run the compiled code without outputting them onto the file system which would be more efficient.

Edit: Perhaps this would be straight forward: "Can I use noEmit tag in typescript to compile and run the code without outputting them onto the file system? If so, how would I do that?"


回答1:


It's used when tsc is used only for type checking, not for compilation. That's the case when some other tool (like Webpack, Parcel or Rollup) is responsible for compiling your code.

If you are interested in running your code in an interactive mode, look into ts-node or ts-node-dev.



来源:https://stackoverflow.com/questions/55002137/typescript-noemit-use-case

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!