https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 7184532b841c5fcda5baed7b59fcc37d18404b3a authored by Suraj Ahmed on 24 June 2022, 13:20:08 UTC
fix: typing error fixes
Tip revision: 7184532
tsconfig.json
{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "native-base": [
        "../src/index"
      ]
    },
    "allowSyntheticDefaultImports": true,
    "jsx": "react-native",
    "lib": [
      "dom",
      "esnext"
    ],
    "moduleResolution": "node",
    "noEmit": true,
    "skipLibCheck": true,
    "resolveJsonModule": true,
    "strict": true
  },
  "extends": "expo/tsconfig.base"
}
back to top