mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 08:56:46 -04:00
7f5865872a
## Context Enforce `noUnusedLocals` and `noUnusedParameters` in tsconfig.json + fix all related issues
18 lines
531 B
JSON
18 lines
531 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"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"]
|
|
}
|