Files
formbricks/apps/web/tsconfig.json
Neil Chauhan cac02c77a1 feat: FOR-683 Role Switch (#1450)
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2023-11-05 14:26:03 +00:00

27 lines
569 B
JSON

{
"extends": "@formbricks/tsconfig/nextjs.json",
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"../../packages/types/*.d.ts",
"../../packages/lib/jwt.ts",
"../../packages/ee/RoleManagement/components/TransferOwnershipModal.tsx"
],
"exclude": ["../../.env"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./*"],
"@prisma/client/*": ["@formbricks/database/client/*"]
},
"plugins": [
{
"name": "next"
}
],
"strictNullChecks": true
}
}