Revision 5cc521edc0be06de8c79647b1f11b5e702a067a2 authored by Vidhi Kataria on 06 January 2022, 05:14:09 UTC, committed by Vidhi Kataria on 06 January 2022, 05:14:09 UTC
2 parent s 12067fb + e6d6f97
Raw File
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