You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It turns out that Create React App's npm start and npm build don't check if the source type checks; they just run Babel and throw an error if the input is not syntactically valid TypeScript. We should run tsc somewhere (both for these scripts and for CI) instead of just relying on editor integrations and/or manually running tsc.
The text was updated successfully, but these errors were encountered:
It turns out that Create React App's
npm start
andnpm build
don't check if the source type checks; they just run Babel and throw an error if the input is not syntactically valid TypeScript. We should runtsc
somewhere (both for these scripts and for CI) instead of just relying on editor integrations and/or manually runningtsc
.The text was updated successfully, but these errors were encountered: