Files
formbricks-formbricks/packages/lib/tsconfig.json
Dhruwang Jariwala 5bf5825f30 feat: Onboarding for self hosting (#2722)
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2024-06-10 17:56:02 +00:00

19 lines
439 B
JSON

{
"extends": "@formbricks/config-typescript/nextjs.json",
"include": [".", "../types/*.d.ts"],
"exclude": ["dist", "build", "node_modules", "../../packages/types/surveys.d.ts"],
"compilerOptions": {
"downlevelIteration": true,
"baseUrl": ".",
"paths": {
"@prisma/client/*": ["@formbricks/database/client/*"]
},
"plugins": [
{
"name": "next"
}
],
"strictNullChecks": true
}
}