mirror of
https://github.com/supabase/supabase.git
synced 2026-06-01 18:34:37 +08:00
16 lines
471 B
JSON
16 lines
471 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@ui/*": ["./../../packages/ui/src/*"] // handle ui package paths
|
|
},
|
|
"plugins": [{ "name": "next" }]
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules", "public/deno/*.ts"]
|
|
}
|