mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
Co-authored-by: Balázs Orbán <info@balazsorban.com> fixes https://github.com/nextauthjs/next-auth/issues/5049 closes https://github.com/nextauthjs/next-auth/pull/6230 closes https://github.com/nextauthjs/next-auth/pull/5449 closes https://github.com/nextauthjs/next-auth/pull/5055 fixes https://github.com/nextauthjs/next-auth/issues/4927 BREAKING CHANGE: The adapter now expects `firebase-admin` instead of the `firebase` package and also supports either passing a config object or a firestore instance.
23 lines
477 B
JSON
23 lines
477 B
JSON
{
|
|
"extends": "@next-auth/tsconfig/tsconfig.adapters.json",
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"outDir": ".",
|
|
"rootDir": "src",
|
|
"skipDefaultLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"stripInternal": true,
|
|
"declarationMap": true,
|
|
"declaration": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"tests"
|
|
]
|
|
} |