Typescript noEmit use case Typescript noEmit use case typescript typescript

Typescript noEmit use case


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.