https://github.com/GeekyAnts/NativeBase
Revision 0da7ae5445b4344702fb7b6a1813aa4fc4b0d5ce authored by Suraj Ahmed Choudhury on 18 January 2022, 12:08:12 UTC, committed by GitHub on 18 January 2022, 12:08:12 UTC
2 parent s 8e4df7a + 34b5113
Raw File
Tip revision: 0da7ae5445b4344702fb7b6a1813aa4fc4b0d5ce authored by Suraj Ahmed Choudhury on 18 January 2022, 12:08:12 UTC
Merge pull request #4547 from GeekyAnts/release/3.3.3-alpha.2
Tip revision: 0da7ae5
tsconfig.json
{
  "include": ["./src"],
  "compilerOptions": {
    "baseUrl": ".",
    "declaration": true,
    "paths": {
      "native-base": ["./src/index"]
    },
    "allowUnreachableCode": false,
    "allowUnusedLabels": false,
    "esModuleInterop": true,
    "importsNotUsedAsValues": "error",
    "forceConsistentCasingInFileNames": true,
    "jsx": "react",
    "lib": ["esnext", "dom"],
    "module": "esnext",
    "moduleResolution": "node",
    "noFallthroughCasesInSwitch": true,
    "noImplicitReturns": true,
    "noImplicitUseStrict": false,
    "noStrictGenericChecks": false,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "resolveJsonModule": true,
    "skipLibCheck": true,
    "strict": true,
    "target": "esnext"
  }
}
back to top