supermemory/apps/web/tsconfig.json
2024-07-16 19:26:47 -05:00

25 lines
391 B
JSON

{
"extends": "@repo/typescript-config/nextjs.json",
"compilerOptions": {
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"]
}
},
"include": [
"cf-env.d.ts",
"env.d.ts",
"next.config.mjs",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"../../packages/ui/",
"../../packages/shared-types",
"./components"
],
"exclude": ["node_modules/"]
}