mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-25 16:36:34 -05:00
36 lines
913 B
JSON
36 lines
913 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
"isolatedModules": true,
|
|
"incremental": true,
|
|
"disableSourceOfProjectReferenceRedirect": true,
|
|
"tsBuildInfoFile": "${configDir}/.cache/tsbuildinfo.json",
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"checkJs": false,
|
|
"types": ["nativewind"],
|
|
"module": "es2022",
|
|
"moduleResolution": "Bundler",
|
|
"noEmit": true,
|
|
"jsx": "react-native",
|
|
"moduleSuffixes": [".ios", ".android", ".native", ""],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src",
|
|
".expo/types/**/*.ts",
|
|
"expo-env.d.ts",
|
|
"nativewind-env.d.ts"
|
|
],
|
|
"exclude": ["node_modules", "build", "dist", ".next", ".expo"],
|
|
"extends": "expo/tsconfig.base"
|
|
}
|