Files
formbricks-formbricks/apps/web/tsconfig.json
2024-06-07 07:59:44 +02:00

19 lines
459 B
JSON

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