I have a project created from create-react-app and is in typescript, I want to add suport for custom react-scripts without eject so what would be the best way to do it.
Asked
Active
Viewed 477 times
1 Answers
2
Khizer.
Use this package for custom scripts in TS by using this command
create-react-app my-app --scripts-version custom-react-scripts
BTW, which custom script you want to add

Nathan Osman
- 71,149
- 71
- 256
- 361

Umair Riaz
- 456
- 3
- 12
-
I need to add post-css support and the typescript scripts. – Khizar Ali Jan 22 '21 at 06:07
-
yes, you can use this script for css or less or scss files – Umair Riaz Jan 22 '21 at 06:09