{
  "compilerOptions": {
    "target": "ES6",
    "module": "ESNext",
    "lib": ["ESNext"],
    "jsx": "react-native",
    "declaration": true,
    "declarationMap": true,
    "emitDeclarationOnly": false,
    "outDir": "dist",
    "rootDir": "src",
    "moduleResolution": "node",
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "forceConsistentCasingInFileNames": true,
    "strict": true,
    "skipLibCheck": true,
    "baseUrl": "./src",
    "paths": {
      "@constant/*": ["constants/*"],
      "@constant": ["constants"],
      "@utils/*": ["utils/*"],
      "@utils": ["utils"],
      "@hooks/*": ["hooks/*"],
      "@hooks": ["hooks"],
      "@themes/*": ["themes/*"],
      "@themes": ["themes"],
      "@context/*": ["context/*"],
      "@context": ["context"]
    }
  },
  "include": ["src"],
  "exclude": ["node_modules", "dist"]
}
