documenso/apps/web/tsconfig.json

37 lines
631 B
JSON
Raw Normal View History

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