MihaiC

Results 5 comments of MihaiC

> @NetoBoralli Barring any compatibility issues you could open a PR to update the project's peer dependency to include react 18. Right now though it's locked to React 16/17. PR:...

I just used this override in `package.json` to make `npm i` work: ```javascript ... "fork-ts-checker-webpack-plugin": "^6.5.3", ... "typescript": "^5.0.4" }, "overrides": { "react-scripts": { "typescript": "^5" } }, ```

> @dsclassen @ikang9712 `vite` is an inferior solution, and gives off `grunt` vibes. Just from your link, it requires multiple top-level packages and tedious custom configuration, and [it has circular...

> > CRA & react-scripts is dead, and for good reasons... > > What kind of good reasons? well just found this with a google search https://dev.to/ag2byte/create-react-app-is-officially-dead-h7o : > The...

yes it's dead, the options are: 1. workarounds with `overrides` mentioned above (https://github.com/facebook/create-react-app/issues/13080#issuecomment-1515280885) 2. migrate to vite