mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
36 lines
614 B
JSON
36 lines
614 B
JSON
{
|
|
"extends": "@documenso/tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"~/*": [
|
|
"./src/*"
|
|
],
|
|
"contentlayer/generated": [
|
|
"./.contentlayer/generated"
|
|
]
|
|
},
|
|
"types": [
|
|
"@documenso/lib/types/next-auth.d.ts"
|
|
],
|
|
"strictNullChecks": true,
|
|
"incremental": false
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
".contentlayer/generated"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|