{
  "compilerOptions": {
    "module": "ESNext",
    "target": "ES2017",
    "lib": ["DOM", "ES2017"],
    "jsx": "react-native",
    "moduleResolution": "Node",

    "allowJs": false,
    "strict": true,
    "declaration": true,
    "sourceMap": true,
    "stripInternal": true,
    "skipLibCheck": true,

    "allowUnreachableCode": false,
    "allowUnusedLabels": false,
    "allowSyntheticDefaultImports": true,
    "noFallthroughCasesInSwitch": true,
    "noImplicitOverride": true,
    "noImplicitReturns": false,
    "noUncheckedIndexedAccess": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true
  },
  "include": ["src", "types"],
  "exclude": ["example", "node_modules"]
}