https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 7482a997518e4a0d5c13e7cb5494e828b4f45316 authored by Suraj Ahmed on 08 April 2022, 09:09:14 UTC
fix: typescript version
Tip revision: 7482a99
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