Revision c4354b1f96ecbb9b6ca7d3dc3f6e9f9470ecc8e2 authored by amars29 on 24 September 2021, 10:33:40 UTC, committed by amars29 on 24 September 2021, 10:33:40 UTC
1 parent 2fb4713
Raw File
tsconfig.json
{
  "exclude": ["node_modules", "public", "example", "RNBareExample"],
  "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