Files
documenso/apps/marketing/tsconfig.json
2023-11-06 13:01:06 +11:00

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"
]
}