mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 08:56:46 -04:00
19 lines
505 B
JSON
19 lines
505 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"paths": {
|
|
// @deprecated: use @/ instead of ~/
|
|
"~/*": ["./*"],
|
|
"@/*": ["./*"]
|
|
},
|
|
"strict": false,
|
|
"plugins": [{ "name": "next" }],
|
|
"strictNullChecks": true
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules", "examples"]
|
|
}
|