mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* WIP strict types * wip types * wip strict types * More strict typing * Removing strict false Fix last types * Fix typo * Make TS happy * Fix tests * Fixes to types * Make files align with strict mode
25 lines
652 B
JSON
25 lines
652 B
JSON
{
|
|
"compilerOptions": {
|
|
"emitDeclarationOnly": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": ".",
|
|
"outDir": ".",
|
|
"target": "es2019",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"declaration": true,
|
|
"stripInternal": true,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true
|
|
},
|
|
"exclude": ["./*.js", "./*.d.ts", "app", "**/tests", "**/__tests__", "config"]
|
|
}
|