documenso/apps/web/tsconfig.json

27 lines
392 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": {
"allowJs": true,
2023-06-09 08:21:18 +00:00
"plugins": [
{
"name": "next"
}
],
"paths": {
"~/*": [
"./src/*"
]
},
"strictNullChecks": true
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",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
2022-11-14 22:12:51 +00:00
}