Utilities and UI components for cross-platform React Native apps
0

Configure Feed

Select the types of activity you want to include in your feed.

react-native-expressive / tsconfig.json
816 B 30 lines
1{ 2 "compilerOptions": { 3 "rootDir": ".", 4 "paths": { 5 "react-native-expressive": ["./src/index"] 6 }, 7 "allowUnreachableCode": false, 8 "allowUnusedLabels": false, 9 "customConditions": ["react-native-strict-api"], 10 "esModuleInterop": true, 11 "forceConsistentCasingInFileNames": true, 12 "jsx": "react-jsx", 13 "lib": ["ESNext"], 14 "module": "ESNext", 15 "moduleResolution": "bundler", 16 "noEmit": true, 17 "noFallthroughCasesInSwitch": true, 18 "noImplicitReturns": true, 19 "noImplicitUseStrict": false, 20 "noStrictGenericChecks": false, 21 "noUncheckedIndexedAccess": true, 22 "noUnusedLocals": true, 23 "noUnusedParameters": true, 24 "resolveJsonModule": true, 25 "skipLibCheck": true, 26 "strict": true, 27 "target": "ESNext", 28 "verbatimModuleSyntax": true 29 } 30}