{ "compilerOptions": { "target": "ES2020", "lib": [ "ES2020" ], "allowJs": true, "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": true, "forceConsistentCasingInFileNames": true, "module": "ESNext", "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "jsx": "react-native", "baseUrl": ".", "paths": { "@domain/*": [ "src/domain/*" ], "@ports/*": [ "src/ports/*" ], "@application/*": [ "src/application/*" ], "@adapters/*": [ "src/adapters/*" ], "@presentation/*": [ "src/presentation/*" ], "@store/*": [ "src/store/*" ], "@shared/*": [ "src/shared/*" ] } }, "include": [ "src", "app.json", ".expo/types/**/*.ts", "expo-env.d.ts" ], "exclude": [ "node_modules" ], "extends": "expo/tsconfig.base" }