I'm trying to add TypeScript to my existing create-react-app project as mentioned here.
When I rename a file to tsx and restart the server I get the following error in the App.js file where the tsx file is imported like import Team from './components/pages/Team' this.
Module not found: Can't resolve
I also noticed that tsconfig.json file was not auto-generated when I added typescript( as mentioned in the above link )
What am I doing wrong here?