Created by: theboyWhoCriedWoolf
Added two simple things:
- Added the ability to disable typescript
- Specify custom path overrides
The reason for this is currently create-react-app is really difficult to use with any backend setup without having to have multiple project folders each with their own package.json and dependencies.
I would like to be able to harness the power and zero configuration of react-scripts, but also want to have the freedom and control to run my express server.
This simple override allows me to run my node setup using typescript and my UI using flow or without type checking at all. It also enables me to change the folder structure to allow a better client/server structure for development and build.
This may not be a desired implementation but it would be useful for me to have these features enabled so thought I would at least submit the proposal.
Thanks