2023-06-09 18:21:18 +10:00
|
|
|
{
|
|
|
|
|
"extends": "@documenso/tsconfig/nextjs.json",
|
|
|
|
|
"compilerOptions": {
|
2023-07-27 18:29:22 +10:00
|
|
|
"baseUrl": ".",
|
2023-06-09 18:21:18 +10:00
|
|
|
"allowJs": true,
|
|
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"paths": {
|
2023-08-23 11:22:13 +10:00
|
|
|
"~/*": ["./src/*"],
|
|
|
|
|
"contentlayer/generated": ["./.contentlayer/generated"]
|
2023-06-09 18:21:18 +10:00
|
|
|
},
|
2023-08-23 11:22:13 +10:00
|
|
|
"types": ["@documenso/lib/types/next-auth.d.ts"],
|
2023-08-01 17:34:17 +10:00
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"incremental": false
|
2023-06-09 18:21:18 +10:00
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
2023-07-27 18:29:22 +10:00
|
|
|
".next/types/**/*.ts",
|
|
|
|
|
".contentlayer/generated"
|
2023-06-09 18:21:18 +10:00
|
|
|
],
|
2023-08-23 11:22:13 +10:00
|
|
|
"exclude": ["node_modules"]
|
2023-06-09 18:21:18 +10:00
|
|
|
}
|