Files
archived-next-auth/packages/next-auth/tsconfig.json
2022-09-10 09:39:26 +07:00

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