mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
34 lines
769 B
JSON
34 lines
769 B
JSON
{
|
|
"extends": "@next-auth/tsconfig/tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"emitDeclarationOnly": true,
|
|
"strictNullChecks": true,
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"strict": false,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"stripInternal": true,
|
|
"skipDefaultLibCheck": true,
|
|
"baseUrl": ".",
|
|
"outDir": ".",
|
|
"rootDir": "src",
|
|
"paths": {
|
|
"next": ["node_modules/next"],
|
|
"react": ["node_modules/react"]
|
|
}
|
|
},
|
|
"include": ["src/**/*", "tests/**/*", "config/**/*"],
|
|
"exclude": [
|
|
"./*.js",
|
|
"./*.d.ts",
|
|
"./config",
|
|
"./tests",
|
|
"./coverage",
|
|
"./**/__test__"
|
|
]
|
|
}
|