And a lesser issue I m noticing that
And a lesser issue -- I'm noticing that when I run
codegen or dev it warns No TypeScript binary found, so skipping typecheck., however, I do have the binary and running tsc from the same terminal works fine.2 Replies
Just a guess, but do you have
typescript listed in your package.json + installed for your project? (I use npm and check via npm ls in my project).
It's possible that typescript is installed globally (which is why tsc works) but our commands are looking for the one installed within the project.Adding it as a dev dependency fixed it