https://github.com/GeekyAnts/NativeBase
Revision 9651b4a87a05d0683c176b60469874a523d09594 authored by Suraj Ahmed on 29 August 2022, 12:48:51 UTC, committed by Suraj Ahmed on 29 August 2022, 12:48:51 UTC
1 parent 4131738
Raw File
Tip revision: 9651b4a87a05d0683c176b60469874a523d09594 authored by Suraj Ahmed on 29 August 2022, 12:48:51 UTC
v3.5.0-alpha.7
Tip revision: 9651b4a
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"
  },
  "exclude": ["./bundleGenerator.js", "./src/bundle.js"]
}
back to top