For some reason, since last week, pnpm build fails on @Polleps machine. It works fine on mine and the CI.
We tried:
pnpm purge
- remove node_modules
pnpm install
- Check versions for pnpm and node
Ultimately, we removed the tsc command from the build script, since vite build can compile typescript files, too. However, this does not do typechecking, so we added the typecheck step in the CI.
For some reason, since last week,
pnpm buildfails on @Polleps machine. It works fine on mine and the CI.We tried:
pnpm purgepnpm installUltimately, we removed the
tsccommand from thebuildscript, sincevite buildcan compile typescript files, too. However, this does not do typechecking, so we added thetypecheckstep in the CI.