I just boostrapped a React project with typescript with the following command:
npx create-react-app frontend --template typescript
I am surprised to find tyepscript but also @testing and @types libraries into my dependencies and not my devDependencies. Won't these libraries being in dependencies increase the production bundle?
EDIT: synthetic answer > as MjZac pointed out in the comments, devDependencies and dependencies are mainly semantics when we are talking about a static web app like React. Also, putting things into dependencies will not impact webpack bundling behavior.
