Files
formbricks-formbricks/apps/web/tsconfig.json

18 lines
368 B
JSON

{
"extends": "@formbricks/tsconfig/nextjs.json",
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
/* "@ui/*": ["../../packages/ui/src/*"], */
"@/*": ["./src/*"]
},
"plugins": [
{
"name": "next"
}
]
}
}