Files
archived-next-auth/tsconfig.json
Mathis Møller f998bf2768 refactor: strict types (#2802)
* 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
2021-11-04 20:01:45 +01:00

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"]
}