https://github.com/GeekyAnts/NativeBase
Raw File
Tip revision: 3682e2298139c36e535062ca0b56443f04a1cf22 authored by Viraj-10 on 17 August 2022, 12:39:03 UTC
fix: rnw 0.18 support without internal files
Tip revision: 3682e22
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