- Initialize project with:
npx create-expo-app -t expo-template-blank-typescript- Add .tsconfig file
| { | |
| "compilerOptions": { | |
| "allowJs": false, | |
| "allowSyntheticDefaultImports": true, | |
| "esModuleInterop": true, | |
| "isolatedModules": true, | |
| "jsx": "react-native", | |
| "lib": ["es2017"], | |
| "moduleResolution": "node", | |
| "noEmit": true, | |
| "strict": true, | |
| "target": "esnext" | |
| }, | |
| "exclude": [ | |
| "node_modules", | |
| "babel.config.js", | |
| "metro.config.js", | |
| "jest.config.js" | |
| ] | |
| } |