Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/asteriskzuo/testopenurl
https://github.com/asteriskzuo/testopenurl
Last synced: about 5 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/asteriskzuo/testopenurl
- Owner: AsteriskZuo
- Created: 2024-07-08T09:54:40.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-15T02:28:38.000Z (4 months ago)
- Last Synced: 2024-07-15T03:35:46.960Z (4 months ago)
- Language: Kotlin
- Size: 263 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TypeScript Example
```sh
npx create-expo --example with-typescript
```TypeScript is a superset of JavaScript which gives you static types and powerful tooling in Visual Studio Code including autocompletion and useful inline warnings for type errors.
## 🚀 How to use
#### Creating a new project
- Create a project: `npx create-expo --example with-typescript`
- `cd` into the project### Adding TypeScript to existing projects
- Create a blank TypeScript config: `touch tsconfig.json`
- Run `yarn start` or `npm run start` to automatically configure TypeScript
- Rename files to TypeScript, `.tsx` for React components and `.ts` for plain typescript files> 💡 You can disable the TypeScript setup in Expo CLI with the environment variable `EXPO_NO_TYPESCRIPT_SETUP=1 expo start`
## 📝 Notes
- [Expo TypeScript guide](https://docs.expo.dev/versions/latest/guides/typescript/)