Files
sign/apps/marketing/tsconfig.json

27 lines
392 B
JSON
Raw Normal View History

2023-06-09 18:21:18 +10:00
{
"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"
]
}