tsconfig.json (442B)
1 { 2 "compilerOptions": { 3 "allowJs": true, 4 "allowSyntheticDefaultImports": true, 5 "esModuleInterop": true, 6 "isolatedModules": true, 7 "jsx": "react-native", 8 "moduleResolution": "node", 9 "noEmit": true, 10 "strict": true, 11 "target": "esnext", 12 "skipLibCheck": true 13 }, 14 "exclude": [ 15 "node_modules", 16 "babel.config.js", 17 "metro.config.js", 18 "jest.config.js" 19 ], 20 "extends": "expo/tsconfig.base" 21 }