Files
formbricks/apps/formbricks-com/tsconfig.json
2023-08-28 22:04:22 +05:30

25 lines
374 B
JSON

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