DEV Community

Discussion on: React setup with webpack for beginners

Collapse
 
deepanjangh profile image
Deepanjan Ghosh • Edited

Hey! thanks,
Well for now you need add some dev dependencies for typescripts, like you need to install npm i --save-dev typescript @types/react @types/react-dom awesome-typescript-loader and add a typescript configuration file like tsconfig.json.
Change the .jsx files to .tsx and you can find plenty of article explaining the setup of tsconfig.json.
Soon I'll also add a comprehensive post for typescript setup as well.

Collapse
 
carrotfarmer profile image
Dhruva Srinivas

Thank you!