Files
supabase/apps/docs/tsconfig.json
T
2026-03-26 15:27:35 +01:00

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"]
}