mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
24 lines
602 B
JSON
24 lines
602 B
JSON
{
|
|
"extends": "@next-auth/tsconfig/tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"outDir": ".",
|
|
"rootDir": "src",
|
|
"skipDefaultLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"stripInternal": true,
|
|
"declarationMap": true,
|
|
"declaration": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["*.js", "*.d.ts", "lib", "providers"]
|
|
}
|