cal/packages/tsconfig/nextjs.json
Agusti Fernandez Pardo e878e1a665
Fix/api build (#3675)
* fix: shared next-auth calendso session type fix

* fix: move imports from @lib -> @calcom/lib to fix types

* Consolidates next-auth definitions

Co-authored-by: Agusti Fernandez Pardo <git@agusti.me>
Co-authored-by: zomars <zomars@me.com>
2022-08-03 13:18:26 -06:00

27 lines
738 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Next.js",
"extends": "./base.json",
"compilerOptions": {
"declaration": false,
"declarationMap": false,
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"resolveJsonModule": true,
"strict": true,
"isolatedModules": true,
"jsx": "preserve",
"strictNullChecks": true,
"useUnknownInCatchVariables": true
},
"include": ["src", "next-env.d.ts", "../types/next-auth.d.ts", "../types/*.d.ts"],
"exclude": ["node_modules"]
}