2022-06-07 06:13:32 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-01-18 22:30:25 +00:00
|
|
|
"strict": true,
|
2022-06-07 06:13:32 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"jsx": "react",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"noEmitOnError": false,
|
|
|
|
"target": "ES2020",
|
2023-01-18 22:30:25 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
"resolveJsonModule": true
|
2022-06-07 06:13:32 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"next-env.d.ts",
|
|
|
|
"../../packages/types/*.d.ts",
|
|
|
|
"../../packages/types/next-auth.d.ts",
|
|
|
|
"./src/**/*.ts",
|
|
|
|
"./src/**/*.tsx",
|
|
|
|
"../lib/**/*.ts"
|
|
|
|
]
|
|
|
|
}
|