Revision 729b4498a25bc31bbec553ce979367673b91e4a7 authored by Suraj Ahmed on 09 February 2022, 10:02:48 UTC, committed by Suraj Ahmed on 09 February 2022, 10:02:48 UTC
1 parent 2f79b93
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