I just created one of the default typescript expo projects with expo init
, and it has a simple App.tsx
file in the main directory. I'm able to make changes to the file and have those changes reflected in my app, but I can't seem to find the corresponding output file:App.js
file anywhere, which I find very confusing.
After digging in the provided tsconfig.json
, it has an option clearly labeled "noEmit": true,
which turns off any output files during the compilation, which doesn't make a whole lot of sense to me.
Where are the typescript output files being saved / watched?