I type the command to create React Native project with typescript.
npx react-native init MyApp --template react-native-template-typescript
package.json
"react-native": "0.63.2"
I want to create 0.62.2 with typescript so I try the command:
npx react-native init MyApp --version 0.62.2 --template react-native-template-typescript
package.json
"react-native": "0.63.0"
It is 0.63.0 not 0.62.2
Why I can't create 0.62.2 with typescript ?