I am using create-react-app with TypeScript template to manage my React project (yarn create react-app my-app --template typescript)
When I run react-scripts build my code is built into /build folder. How to customize this directory?
I tried to change outDir of compilerOptions in tsconfig.json, but this seems ignored by CRA.