mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
27 lines
392 B
JSON
27 lines
392 B
JSON
{
|
|
"extends": "@documenso/tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"~/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"strictNullChecks": true
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|