Files
formbricks-formbricks/apps/web/tsconfig.json
2025-04-21 12:41:54 +00:00

22 lines
540 B
JSON

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