mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* test(client): initial Jest + RTL setup * test(client): add tests for `getSession` * test(client): document expect cases and fix regex * test(client): small refactors * chore(npm): re-generate package-lock.json * test(client): initial test for `signIn` * test(client): refactor session tests for consistency * test(client): credentials/email signin scenarios * test(client): finish sign-in tests * chore(github): add test to ci * test(client): refactor and extend use cases * test(client): sign-out tests * refactor(client): code review suggestions (1) * test(client): add few more sign-in/sign-out cases * test(client): broadcasting session events * fix(client): handle fetch providers error
36 lines
856 B
JSON
36 lines
856 B
JSON
{
|
|
"compilerOptions": {
|
|
"strictNullChecks": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"types": ["./types"],
|
|
"next-auth": ["./src/server"],
|
|
"next-auth/adapters": ["./src/adapters"],
|
|
"next-auth/client": ["./src/client"],
|
|
"next-auth/jwt": ["./src/lib/jwt"],
|
|
"next-auth/providers": ["./src/providers"]
|
|
},
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve"
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.js",
|
|
".eslintrc.js"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|