mirror of
https://github.com/supabase/supabase.git
synced 2026-05-07 23:19:23 +08:00
25 lines
692 B
JSON
25 lines
692 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"paths": {
|
|
// @deprecated: Don't import directly without suffix. Use @/ always.
|
|
"*": ["./*"],
|
|
"@/*": ["./*"],
|
|
"@ui/*": ["./../../packages/ui/src/*"], // handle ui package paths
|
|
"contentlayer/generated": ["./.contentlayer/generated"]
|
|
},
|
|
"plugins": [{ "name": "next" }],
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": false
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
".contentlayer/generated"
|
|
],
|
|
"exclude": ["node_modules", "./scripts/build-registry.mts"]
|
|
}
|