Should I have this line as it was, or as per the upgrade to v3 guide for Needle Engine it mentions removing an extra tsc call?
"build:dev": "tsc && vite build && npm run copy-files",
or this now which I edited it to?:
"build:dev": "vite build && npm run copy-files",
or should the extra tsc call look something like this:
"build:dev": "tsc & tsc && vite build && npm run copy-files",