https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: d9d787a19ddf8c4125a7da4b8046d99b074bc7c7 authored by mayank-96 on 16 March 2022, 13:22:01 UTC
fix: text color in dark mode
Tip revision: d9d787a
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